Hi
As you can see below, I have specified the SSLProtocol to ignore TLS1.0 however, the ssllabs still says that feature is enabled albeit apache2 restart.
root@s1:/etc/apache2# grep -r SSLProtocol .
./mods-available/ssl.conf: SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
./sites-available/default-ssl.conf: SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
./sites-available/000-default-le-ssl.conf: SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
and
root@courseware:/etc/apache2# cat sites-enabled/000-default-le-ssl.conf
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
ServerName DOMAIN.COM
SSLCertificateFile /etc/letsencrypt/live/DOMAIN.COM/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/DOMAIN.COM/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
Should I do something more?