diff options
Diffstat (limited to 'deployment')
-rw-r--r-- | deployment/websites/manifests/git.pp | 1 | ||||
-rw-r--r-- | deployment/websites/manifests/start.pp | 1 | ||||
-rw-r--r-- | deployment/websites/manifests/svn.pp | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/deployment/websites/manifests/git.pp b/deployment/websites/manifests/git.pp index 90944016..b7958b25 100644 --- a/deployment/websites/manifests/git.pp +++ b/deployment/websites/manifests/git.pp @@ -4,6 +4,7 @@ class websites::git { } apache::vhost_redirect { "ssl_git.${::domain}": use_ssl => true, + vhost => "git.${::domain}/", url => "https://gitweb.${::domain}/", } } diff --git a/deployment/websites/manifests/start.pp b/deployment/websites/manifests/start.pp index 4674591c..34a57af8 100644 --- a/deployment/websites/manifests/start.pp +++ b/deployment/websites/manifests/start.pp @@ -5,6 +5,7 @@ class websites::start { } apache::vhost_redirect { "ssl_start.${::domain}": use_ssl => true, + vhost => "start.${::domain}/", url => "https://www.${::domain}/community/", } } diff --git a/deployment/websites/manifests/svn.pp b/deployment/websites/manifests/svn.pp index a1a39d01..ef508d15 100644 --- a/deployment/websites/manifests/svn.pp +++ b/deployment/websites/manifests/svn.pp @@ -4,6 +4,7 @@ class websites::svn { } apache::vhost_redirect { "ssl_svn.${::domain}": use_ssl => true, + vhost => "svn.${::domain}/", url => "https://svnweb.${::domain}/", } } |