Apache反向代理https

时间:2013-12-11 12:01:28

标签: apache iframe https apache2 reverse-proxy

我有一个网站,里面有一个iframe,里面加载来自反向代理的内容。在http。

的情况下,设置完美无缺

但是当反向代理加载https时会出现问题。

iframe内容中的

作为http协议(通过浏览器控制台我检查位置对象)加载,这是不安全的。我想告诉代理如果后端内容是https然后在iframe中加载https,虽然外页是http。

我可以这样做吗?

以下是我编写/ etc / apache2 / sites-available / default

的方法
<VirtualHost *:80>
        ServerAdmin webmaster@localhost

        RequestHeader set X-Forwarded-Proto "https"
        ServerName localhost
        SSLProxyEngine On
        RequestHeader set Front-End-Https "On"
        DocumentRoot /var/www
        <Directory />
                Options FollowSymLinks
                AllowOverride None
        </Directory>

0 个答案:

没有答案