diff options
author | Michael Scherer <misc@mageia.org> | 2011-02-22 01:15:43 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-02-22 01:15:43 +0000 |
commit | 67a34acd0126f185c93c67385c13b83cd88a8471 (patch) | |
tree | 0a294cc0e2f96a7346385c23a78a11d968ee0c35 | |
parent | 1bbaabce5f4dfaed9cfc1d32d3f3d1af5095c034 (diff) | |
download | puppet-67a34acd0126f185c93c67385c13b83cd88a8471.tar puppet-67a34acd0126f185c93c67385c13b83cd88a8471.tar.gz puppet-67a34acd0126f185c93c67385c13b83cd88a8471.tar.bz2 puppet-67a34acd0126f185c93c67385c13b83cd88a8471.tar.xz puppet-67a34acd0126f185c93c67385c13b83cd88a8471.zip |
- also connect to the ssl version of the forum on the reverse proxy ( so we
can safely force the usage of https for login with fiddling )
-rw-r--r-- | manifests/nodes.pp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/manifests/nodes.pp b/manifests/nodes.pp index aa2d7aed..362b99f0 100644 --- a/manifests/nodes.pp +++ b/manifests/nodes.pp @@ -77,8 +77,11 @@ node alamut { url => "http://forums.$domain/", } + # 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 ) apache::vhost_reverse_proxy { "ssl_forums.$domain": - url => "http://forums.$domain/", + url => "https://forums.$domain/", vhost => "forums.$domain", use_ssl => true, } |