diff options
author | Dan Fandrich <danf@mageia.org> | 2024-03-01 18:59:57 -0800 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-03-01 18:59:57 -0800 |
commit | d8b13b3bc54448f8bec109cbf7cccec842412e38 (patch) | |
tree | 777c36a5faa5e774892efde395e96794b899ad26 | |
parent | 05545dde3f9b7fada9e606f8875b890d4656212c (diff) | |
download | puppet-d8b13b3bc54448f8bec109cbf7cccec842412e38.tar puppet-d8b13b3bc54448f8bec109cbf7cccec842412e38.tar.gz puppet-d8b13b3bc54448f8bec109cbf7cccec842412e38.tar.bz2 puppet-d8b13b3bc54448f8bec109cbf7cccec842412e38.tar.xz puppet-d8b13b3bc54448f8bec109cbf7cccec842412e38.zip |
Drop trailing slash in vhost names
-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}/", } } |