diff options
author | Dan Fandrich <danf@mageia.org> | 2024-03-01 18:12:26 -0800 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-03-01 18:13:01 -0800 |
commit | 05545dde3f9b7fada9e606f8875b890d4656212c (patch) | |
tree | 98c72c2846777a69a85ab366ee22fde0dc45841f /deployment | |
parent | db905c74b31c76477b097b1a6185206526228ee5 (diff) | |
download | puppet-05545dde3f9b7fada9e606f8875b890d4656212c.tar puppet-05545dde3f9b7fada9e606f8875b890d4656212c.tar.gz puppet-05545dde3f9b7fada9e606f8875b890d4656212c.tar.bz2 puppet-05545dde3f9b7fada9e606f8875b890d4656212c.tar.xz puppet-05545dde3f9b7fada9e606f8875b890d4656212c.zip |
Fix vhost names for the new https: redirects (mga#32903)
The puppet object names are used otherwise which isn't correct.
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}/", } } |