Enable mod_proxy when proxying status commands

Change-Id: I77da4a3159911410d31d9803b282d57be2f6ca0c
This commit is contained in:
James E. Blair 2016-09-01 10:28:54 -07:00
parent ad87982b13
commit 9616250238
1 changed files with 6 additions and 0 deletions

View File

@ -288,6 +288,12 @@ class nodepool (
if ! defined(Httpd::Mod['rewrite']) {
httpd::mod { 'rewrite': ensure => present }
}
if ! defined(Httpd::Mod['proxy']) {
httpd::mod { 'proxy': ensure => present }
}
if ! defined(Httpd::Mod['proxy_http']) {
httpd::mod { 'proxy_http': ensure => present }
}
}
if $image_log_document_root != '/var/log/nodepool' {