Apache2将https重定向到没有证书的http

时间:2014-11-21 10:38:20

标签: linux apache ubuntu apache2

我已经阅读了关于此的所有帖子,但没有一个有用。

我的尝试是编辑000-default并将端口443重定向到80但没有成功。

任何想出框的想法都会很棒。

由于

1 个答案:

答案 0 :(得分:1)

在/etc/apache2/sites-available/000-default.conf

<VirtualHost *:443>
        ServerName yourname.site.com
        ProxyPass         / http://127.0.0.1:80/
        ProxyPassReverse  / http://127.0.0.1:80/
</VirtualHost>

不要忘记加载您的文件     a2ensite /etc/apache2/sites-available/000-default.conf