Apache的反向代理用于Kibana
在网络环境受限等情况下,为接收Kibana设置为80端口的配置。
- kibana 用のconf ファイルを作成
ProxyRequests Off
ProxyPreserveHost On
<Location "/kibana">
ProxyPass "http://localhost:5601"
ProxyPassReverse "http://localhost:5601"
RewriteRule "^/kibana/(.*)$" "/$1" [L,PT]
</Location>
- kibana.yml ではbasePath を設定する
server.port: 5601
server.host: "0.0.0.0"
server.basePath: "/kibana"