假设用户打开https://ssl-site.example/link/index.php
我在 Apache 配置中配置了我的服务器ProxyPass(ProxyPassReverse在conf.d区域内):
ProxyPass "/link" "https://other-site.example/link"
ProxyPassReverse "/link" "https://other-site.example/link"
所以如果我理解正确,现在用户https://ssl-site.example/link/index.php在浏览器中看到 URL,但实际上内容来自https://other-site.example/link/index.php
ssl-site.example具有有效的 SSL 证书。
是否other-site.example还需要有效的 SSL 证书才能让用户看到有效的 SSL 连接https://ssl-site.example/link/index.php?