diff options
author | Dan Fandrich <danf@mageia.org> | 2024-02-10 22:26:37 -0800 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-02-10 22:26:37 -0800 |
commit | 56079da1d849bbd022efc9c3c715857c0c959be1 (patch) | |
tree | a5e466c40e6f16a077e8139731e0e2ebc02ebfc3 /manifests | |
parent | 34c5920ab70244b47387f1a7e19ef97822c1fcac (diff) | |
download | puppet-56079da1d849bbd022efc9c3c715857c0c959be1.tar puppet-56079da1d849bbd022efc9c3c715857c0c959be1.tar.gz puppet-56079da1d849bbd022efc9c3c715857c0c959be1.tar.bz2 puppet-56079da1d849bbd022efc9c3c715857c0c959be1.tar.xz puppet-56079da1d849bbd022efc9c3c715857c0c959be1.zip |
Connect to the forums server from the proxy via http:
The forum's certificate expired so the reverse proxy was returning 500
errors. But, since the forums server is running in a VM (friteuse)
on the proxy server (sucuk), data never leaves the machine so there is
no need to encrypt it.
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/nodes/sucuk.pp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/manifests/nodes/sucuk.pp b/manifests/nodes/sucuk.pp index 8a783cab..fcdb4ce3 100644 --- a/manifests/nodes/sucuk.pp +++ b/manifests/nodes/sucuk.pp @@ -127,11 +127,9 @@ node sucuk { use_ssl => true, } - # connect to ssl so the proxy do not shoke if trying to - # enforce ssl ( note that this has not been tested, maybe this - # is uneeded ) + # forums is running in a VM on the machine so https: isn't necessary apache::vhost::reverse_proxy { "ssl_forums.${::domain}": - url => "https://forums.${::domain}/", + url => "http://forums.${::domain}/", vhost => "forums.${::domain}", use_ssl => true, content => ' |