aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/start.pp
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/websites/manifests/start.pp')
-rw-r--r--deployment/websites/manifests/start.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/deployment/websites/manifests/start.pp b/deployment/websites/manifests/start.pp
new file mode 100644
index 00000000..9d5b77e5
--- /dev/null
+++ b/deployment/websites/manifests/start.pp
@@ -0,0 +1,11 @@
+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,
+ vhost => "start.${::domain}",
+ url => "https://www.${::domain}/community/",
+ }
+}