Doesn't eNull refer to Null ciphers and make it possible to make an
unencrypted SSL connection?
On Friday 03 May 2002 12:12 pm, Chad S. Lauritsen wrote:
> Pete:
>
> Thanks a million for the suggestion. That seems to have done the trick!
>
> Chad
>
> Peter M. Jansson wrote:
> |To make Mac IE (and some older Windows IEs) work, you need to turn on
> |session caching and turn off some ciphers. Here's an example config:
> |
> |ns_section "ns/server/${servername}/module/nsopenssl"
> |ns_param ServerPort $httpsport
> |ns_param ServerHostname $hostname
> |ns_param ServerAddress $address
> |ns_param ServerCertFile certfile.pem
> |ns_param ServerKeyFile keyfile.pem
> |ns_param ServerProtocols All
> |ns_param ServerCipherSuite
>
> "ALL:!ADH:!EXP56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+E
>
> |XP:+eNULL"
> |ns_param ServerSessionCache true
> |ns_param ServerSessionCacheID 1
> |ns_param ServerSessionCacheSize 512
> |ns_param ServerSessionCacheTimeout 300
> |ns_param ServerPeerVerify false
> |ns_param ServerPeerVerifyDepth 3
> |ns_param ServerCADir ca
> |ns_param ServerCAFile ca.pem
> |ns_param ServerTrace false
> |ns_param RandomFile /dev/urandom
> |ns_param SeedBytes 1024
> |
> |Pete.
> |
> |On Fri, 3 May 2002, Chad S. Lauritsen wrote: