我正在尝试设置一个基本的反向代理来访问我的 kibana 实例。这里是 kibana 实例(直接通过 :5601 工作没有任何问题)
#server.basePath: ""
server.basePath:"/kibana"
还有我的 apache 东西
<VirtualHost *:80>
Servername xxxx
ProxyPreserveHost On
ProxyRequests On
ProxyPass / http://localhost:5601
ProxyPassReverse / http://localhost:5601
</VirtualHost>
问题是我得到 http://xxxx/
代理错误
代理服务器收到来自上游服务器的无效响应。代理服务器无法处理请求 GET /app/kibana。
原因:DNS 查找失败:localhost:5601app
我做了一些测试,但似乎没有任何效果。第二次尝试使用 ProxyPass / http://localhost:5601/app/kibana ProxyPassReverse / http://localhost:5601/app/kibana
这次好多了,但还是不行 http://xxxx 我眨了眨眼,我可以看到“kibana 正在加载”,然后是一条红色的大消息
Kibana 未正确加载。检查服务器输出以获取更多信息。