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