diff options
-rw-r--r-- | deployment/websites/manifests/git.pp | 2 | ||||
-rw-r--r-- | deployment/websites/manifests/start.pp | 2 | ||||
-rw-r--r-- | deployment/websites/manifests/svn.pp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/deployment/websites/manifests/git.pp b/deployment/websites/manifests/git.pp index b7958b25..e357dfb2 100644 --- a/deployment/websites/manifests/git.pp +++ b/deployment/websites/manifests/git.pp @@ -4,7 +4,7 @@ class websites::git { } apache::vhost_redirect { "ssl_git.${::domain}": use_ssl => true, - vhost => "git.${::domain}/", + vhost => "git.${::domain}", url => "https://gitweb.${::domain}/", } } diff --git a/deployment/websites/manifests/start.pp b/deployment/websites/manifests/start.pp index 34a57af8..9d5b77e5 100644 --- a/deployment/websites/manifests/start.pp +++ b/deployment/websites/manifests/start.pp @@ -5,7 +5,7 @@ class websites::start { } apache::vhost_redirect { "ssl_start.${::domain}": use_ssl => true, - vhost => "start.${::domain}/", + vhost => "start.${::domain}", url => "https://www.${::domain}/community/", } } diff --git a/deployment/websites/manifests/svn.pp b/deployment/websites/manifests/svn.pp index ef508d15..973c012d 100644 --- a/deployment/websites/manifests/svn.pp +++ b/deployment/websites/manifests/svn.pp @@ -4,7 +4,7 @@ class websites::svn { } apache::vhost_redirect { "ssl_svn.${::domain}": use_ssl => true, - vhost => "svn.${::domain}/", + vhost => "svn.${::domain}", url => "https://svnweb.${::domain}/", } } |