apache2

Enable TLS 1.2 only in Apache Edit the virtual host section for your domain in the Apache SSL configuration file on your server and add set the SSLProtocol as follows. This will disable all older protocols and your Apache server and enable only TLSv1.2  SSLProtocol -all +TLSv1.2 Sample Apache virtual host with SSL : <VirtualHost *:443> ServerName www.example.com DocumentRoot /var/www/html SSLEngine...

Read More