【发布时间】:2020-01-27 09:53:48
【问题描述】:
假设用户打开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 证书才能让用户看到查看 https://ssl-site.example/link/index.php 的有效 SSL 连接?
【问题讨论】: