我很难在ubuntu14.04上为pupy3中的kibana4.1.1配置Apache2.4vhost。
proxy_pass => 'http://localhost:5601',
proxy_pass_reverse => 'http://localhost:5601',
Error 400 on SERVER: Invalid parameter proxy_pass_reverse on Apache::Vhost我在网上找不到任何东西,即使是在傀儡apache模块readme。有人知道怎么做吗?
发布于 2016-09-23 08:15:57
结果需要如下所示:
ProxyPass / http://127.0.0.1:5601/
ProxyPassReverse / http://127.0.0.1:5601/配置文件/角色中的相应配置需要如下所示:
proxy_pass => {
path => '/',
url => 'http://127.0.0.1:5601/'
},这在模块文档中有描述。
https://serverfault.com/questions/804795
复制相似问题