我在 ubuntu 14.04 上的 puppet 3 中为 kibana 4.1.1 配置 apache 2.4 vhost 时遇到了麻烦。
proxy_pass => 'http://localhost:5601',
proxy_pass_reverse => 'http://localhost:5601',
Error 400 on SERVER: Invalid parameter proxy_pass_reverse on Apache::Vhost
我在网上甚至在 puppet apache 模块自述文件中都找不到任何东西。有人知道如何做到这一点吗?
答案1
结果看起来应该是这样的:
ProxyPass / http://127.0.0.1:5601/
ProxyPassReverse / http://127.0.0.1:5601/
您的个人资料/角色中的相应配置需要如下所示:
proxy_pass => {
path => '/',
url => 'http://127.0.0.1:5601/'
},
这在模块文档。