我需要将一个SSL站点redirect到另一个SSL站点。
例如,我控制https://sitea.michael.com,但我希望那里的stream量被转发到https://siteb.notinmycontrol.com
我不控制notinmycontrol.com上的DNS,无论如何他们没有办法在他们的服务器上安装michael.com证书。
如果我正在运行Apache服务器,则通过mod_proxy和mod_ssl工作
<VirtualHost *:80> ServerName sitea.michael.com ServerAdmin webmaster@localhost SSLProxyEngine on ProxyPass / https://siteb.notinmycontrol.com/ ProxyPassReverse / https://siteb.notinmycontrol.com/ ErrorLog /var/log/apache2/error.log LogLevel warn CustomLog /var/log/apache2/access.log combined ServerSignature On </VirtualHost>
如果我正在运行IIS服务器,是否有相当的方法来做到这一点?
如果您使用IIS 7或更高版本,则应该能够使用ARR作为反向代理 。
这会为你工作吗?
否,不可能使用IIS反向代理,这是ISA Server的用途。