Apache Proxy Pass不重定向

时间:2019-12-11 13:59:38

标签: apache reverse-proxy grafana

我想将所有流量从http重定向到https。但我也想要 /grafana转到https://localhost:3000/

80和443端口正在被apache2监听,并为zabbix前端服务。

端口3000正在通过grafana服务器进行监听。

apache2.conf-虚拟主机端口80

    Redirect /      https://10.10.10.10/

    ProxyPass /grafana https://10.10.10.10:3000/
    ProxyPassReverse /grafana https://10.10.10.10:3000/

ssl.conf-虚拟主机端口443

    SSLProxyEngine On
    SSLProxyVerify none
    SSLProxyCheckPeerCN off
    SSLProxyCheckPeerName off
    SSLProxyCheckPeerExpire off
    ProxyPass /grafana https://10.10.10.10:3000/
    ProxyPassReverse /grafana https://10.10.10.10:3000/

但是/grafana重定向到https://10.10.10.10/login而不是https://10.10.10.10:3000/login

有什么建议吗?

0 个答案:

没有答案