aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/forum_proxy.pp
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2015-10-19 20:16:53 +0300
committerThomas Backlund <tmb@mageia.org>2015-10-19 20:16:53 +0300
commit814d434eb7e7d8a89dac98b1a60afc10a6980617 (patch)
tree27c7b9409f7be3942ab0a5039bd9349bb4fc09dc /deployment/websites/manifests/forum_proxy.pp
parent9b5ad1460988eaa2fa11e0c5585ab7537b15c131 (diff)
downloadpuppet-814d434eb7e7d8a89dac98b1a60afc10a6980617.tar
puppet-814d434eb7e7d8a89dac98b1a60afc10a6980617.tar.gz
puppet-814d434eb7e7d8a89dac98b1a60afc10a6980617.tar.bz2
puppet-814d434eb7e7d8a89dac98b1a60afc10a6980617.tar.xz
puppet-814d434eb7e7d8a89dac98b1a60afc10a6980617.zip
lint fixes for websites
Diffstat (limited to 'deployment/websites/manifests/forum_proxy.pp')
-rw-r--r--deployment/websites/manifests/forum_proxy.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/deployment/websites/manifests/forum_proxy.pp b/deployment/websites/manifests/forum_proxy.pp
index 06e9f433..1cb6c034 100644
--- a/deployment/websites/manifests/forum_proxy.pp
+++ b/deployment/websites/manifests/forum_proxy.pp
@@ -2,12 +2,12 @@ class websites::forum_proxy {
$web_domain = "forums.$::domain"
apache::vhost::reverse_proxy { $web_domain:
- url => "http://$web_domain/",
+ url => "http://${web_domain}/",
}
- apache::vhost::reverse_proxy { "ssl_$web_domain":
+ apache::vhost::reverse_proxy { "ssl_${web_domain}":
vhost => $web_domain,
use_ssl => true,
- url => "http://$web_domain/",
+ url => "http://${web_domain}/",
}
}