Hi everyone,
 
I´ve got a big problem:
I installed on SuSE Linux 7.3 the Apache Web Server including
the mod_ssl in order to run a secured webinterface for my
IMAP-Server...
Unsecured everything works just fine in every Browser.
After installing the SSL-Plugin I generated a custom certificate and everything
works fine with Netscape / Konquerer / w3m.
But when I try to connect via https with any version of Microsofts
Internet Explorer I get the message, that the page cannot be
displayed.
I found out that there are many problems with MSIE, and I did all
the fixes. Here are parts of my httpd.conf. Does anyone has an idea?
Apache-Version 1.3.20
mod_ssl Version 2.8.4
openssl Version 0.96b
PHP Version Pear 4.1.0
MySQL Version 3.21
 
[...]
SSLPassPhraseDialog  builtin
SSLSessionCache         dbm:/var/run/ssl_scache
SSLSessionCacheTimeout  300
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
 
<VirtualHost _default_:443>
SSLEngine on
 
#*** here I tried both versions .... no change
#SSLProtocol ALL -SSLv3 
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
 
SSLVerifyClient none
 
<Files ~ "\.(cgi|shtml|phtml|php3|php?)$">
    SSLOptions +StdEnvVars
</Files>
<Directory "/usr/local/httpd/cgi-bin">
    SSLOptions +StdEnvVars
</Directory>
 
#*** here I tried both versions .... no change
#SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
BrowserMatch "MSIE [1-4]" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
BrowserMatch "MSIE [5-9]" ssl-unclean-shutdown

Reply via email to