我有一个问题在不同的问题中以某种方式出现,但我仍然找不到解决方案。
我的问题是我在 debian 上的 apache 2.4 上托管一个站点,在 windows xp 上使用 SSL 和 Internet Explorer 7 显示
Internet Explorer cannot display the webpage
Run Code Online (Sandbox Code Playgroud)
我只有一个使用 ssl 的虚拟主机,但有不同的使用 http 的虚拟主机。这是我启用 SSL 的站点的配置(etc/sites-avaible/default-ssl 未链接)
<Virtualhost xx.yyy.86.193:443>
ServerName www.my-certified-domain.de
ServerAlias my-certified-domain.de
DocumentRoot "/var/local/www/my-certified-domain.de/current/www"
Alias /files "/var/local/www/my-certified-domain.de/current/files"
CustomLog /var/log/apache2/access.my-certified-domain.de.log combined
<Directory "/var/local/www/my-certified-domain.de/current/www">
AllowOverride All
</Directory>
SSLEngine on
SSLCertificateFile /etc/ssl/certs/www.my-certified-domain.de.crt
SSLCertificateKeyFile /etc/ssl/private/www.my-certified-domain.de.key
SSLCipherSuite HIGH:MEDIUM:!aNULL:+SHA1:+MD5:+HIGH:+MEDIUM
SSLCertificateChainFile /etc/apache2/ssl.crt/www.my-certified-domain.de.ca
BrowserMatch "MSIE [2-8]" nokeepalive downgrade-1.0 force-response-1.0
</VirtualHost>
<VirtualHost *:80>
ServerName www.my-certified-domain.de
ServerAlias my-certified-domain.de
CustomLog /var/log/apache2/access.my-certified-domain.de.log combined
Redirect permanent / https://www.my-certified-domain.de/
</VirtualHost> …Run Code Online (Sandbox Code Playgroud)