From d8b13b3bc54448f8bec109cbf7cccec842412e38 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Fri, 1 Mar 2024 18:59:57 -0800 Subject: Drop trailing slash in vhost names --- deployment/websites/manifests/git.pp | 2 +- deployment/websites/manifests/start.pp | 2 +- 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}/", } } -- cgit v1.2.1