I'm running Apache2 with SSL on Ubuntu 10.04LTS. Chrome gives me this annoying warning when I inspect the certificate:
The connection had to be retried using SSL 3.0. This typically means that the server is using very old software and may have other security issues.
The relevant part of the apache config looks like:
SSLEngine on
SSLCertificateFile /etc/ssl/...
SSLCertificateKeyFile /etc/ssl/...
SSLCACertificateFile /etc/ssl/...
SSLProtocol -all +SSLv3 +TLSv1
The last line I added to try to address this problem, but it's not working. Any advice on properly enabling TLS?
SSLCipherSuitedirective? Also, where's the certificate from? And does the cert have anything else strange going on like, say, an MD5 hash or chain validation issues? – Shane Madden Jun 15 '11 at 0:13SSLProtocol -all +TLSv1? – Bruno Jun 15 '11 at 13:01