SSL 3.0 warning in Chrome on Ubuntu 10.04LTS
Posted
by
Leopd
on Server Fault
See other posts from Server Fault
or by Leopd
Published on 2011-06-14T23:22:27Z
Indexed on
2012/07/01
15:18 UTC
Read the original article
Hit count: 245
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?
© Server Fault or respective owner