How to disable TLSv1 in Apache
Matthew Martinez
I have installed Apache on an Ubuntu server, and have SSL installed through "Let's Encrypt".
The SSL certificate is valid, but when running the URL of the website thought , it gives the following reason why Chrome does not grant a padlock:You currently have TLSv1 enabled.
Within the file /etc/apache2/mods-enabled/ssl.conf, I have changed the line for SSLProtocol to the following:SSLProtocol all -SSLv2 -SSLv3
Why is this change not allowing Chrome to provide the padlock? Is it because I am using virtual hosts? What is the correct configuration to disable TLSv1 in Apache on Ubunutu?
1 Answer
What i have on my apache config is
SSLProtocol ALL -SSLv2 -SSLv3 -TLSv1 -TLSv1.1Get a rating for your config on:
3