Ubuntu

Puppet Apache vhost proxypassreverse 配置

  • September 23, 2016

我在 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 模組自述文件中,我也無法在網上找到任何內容。有人知道如何完成這項工作嗎?

結果需要看起來像這樣:

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