From 05545dde3f9b7fada9e606f8875b890d4656212c Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Fri, 1 Mar 2024 18:12:26 -0800 Subject: Fix vhost names for the new https: redirects (mga#32903) The puppet object names are used otherwise which isn't correct. --- deployment/websites/manifests/git.pp | 1 + deployment/websites/manifests/start.pp | 1 + deployment/websites/manifests/svn.pp | 1 + 3 files changed, 3 insertions(+) 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}/", } } -- cgit v1.2.1