+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile server1.crt
SSLCertificateKeyFile server1.key
</VirtualHost>
<VirtualHost *:443>
ServerName server2
DocumentRoot "/server2"
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile server2.crt
SSLCertificateKeyFile server2.key
</VirtualHost>
So when I browse to
https://server2,
firefox has "server2" down in the bottom right corner of the browser
window, but if I bring up the security dialog and look at the cert, it
is the server1 cert.
Any ideas?
Apache 2.0.59 binary build from
sunfreeware.com plus supporting tools. Keys and certs are self-signed, generated with openssl.
Mark