On my server with ubuntu 18.04.4 and apache 2.4.41 Im trying to disable tls1.0 and 1.1 by editing:
/etc/apache2/mods-available/ssl.conf
with:
SSLProtocol +TLSv1.2 +TLSv1.3
And afterwards running
sudo service apache2 restart
However when I check my domain at https://www.ssllabs.com it still says
This server supports TLS 1.0 and TLS 1.1. Grade capped to B.
I was following this https://gist.github.com/GAS85/42a5469b32659a0aecc60fa2d4990308 manual.
Im trying to config my first https website by using certbot.
How can I disable tls1.0 and 1.1 on an ubuntu server running apache.