Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

How to disable TLSv1 in Apache

Writer 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.1

Get a rating for your config on:

3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy