aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/svn.pp
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/websites/manifests/svn.pp')
-rw-r--r--deployment/websites/manifests/svn.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/deployment/websites/manifests/svn.pp b/deployment/websites/manifests/svn.pp
new file mode 100644
index 00000000..973c012d
--- /dev/null
+++ b/deployment/websites/manifests/svn.pp
@@ -0,0 +1,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}/",
+ }
+}