我想将所有流量从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
有什么建议吗?