Comment 2 for bug 381771

Revision history for this message
Phillip Steinbachs (psteinbachs) wrote :

I stumbled upon a workaround for this. In /etc/apache2/conf.d add an ssl.conf with the following contents:

<IfModule mod_ssl.c>
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT56:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW:+EXP:+eNULL
SSLRandomSeed startup file:/dev/urandom 512
SSLRandomSeed connect file:/dev/urandom 512
SSLCryptoDevice pkcs11
</IfModule>

These changes are derived from:

http://src.opensolaris.org/source/xref/webstack/apache2/httpd/patches/ssl.conf.in.patch.Solaris

After this, both port 80 and 443 work with the standard hardy packages.