aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--deployment/websites/manifests/git.pp4
-rw-r--r--deployment/websites/manifests/start.pp3
-rw-r--r--deployment/websites/manifests/svn.pp4
3 files changed, 11 insertions, 0 deletions
diff --git a/deployment/websites/manifests/git.pp b/deployment/websites/manifests/git.pp
index a71de33f..90944016 100644
--- a/deployment/websites/manifests/git.pp
+++ b/deployment/websites/manifests/git.pp
@@ -2,4 +2,8 @@ class websites::git {
apache::vhost_redirect { "git.${::domain}":
url => "https://gitweb.${::domain}/",
}
+ apache::vhost_redirect { "ssl_git.${::domain}":
+ use_ssl => true,
+ url => "https://gitweb.${::domain}/",
+ }
}
diff --git a/deployment/websites/manifests/start.pp b/deployment/websites/manifests/start.pp
index f18adad4..4674591c 100644
--- a/deployment/websites/manifests/start.pp
+++ b/deployment/websites/manifests/start.pp
@@ -1,6 +1,9 @@
class websites::start {
include websites::base
apache::vhost_redirect { "start.${::domain}":
+ url => "https://www.${::domain}/community/",
+ }
+ apache::vhost_redirect { "ssl_start.${::domain}":
use_ssl => true,
url => "https://www.${::domain}/community/",
}
diff --git a/deployment/websites/manifests/svn.pp b/deployment/websites/manifests/svn.pp
index ad49f69e..a1a39d01 100644
--- a/deployment/websites/manifests/svn.pp
+++ b/deployment/websites/manifests/svn.pp
@@ -2,4 +2,8 @@ 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}/",
+ }
}