SSL 3.0 warning in Chrome on Ubuntu 10.04LTS
- by Leopd
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?