aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/svn.pp
blob: 973c012df3ecdfe769d697552541a14845a98729 (plain)
1
2
3
4
5
6
7
8
9
10
class websites::svn {
    apache::vhost_redirect { "svn.${::domain}":
        url => "https://svnweb.${::domain}/",
    }
    apache::vhost_redirect { "ssl_svn.${::domain}":
        use_ssl => true,
        vhost => "svn.${::domain}",
        url => "https://svnweb.${::domain}/",
    }
}