How can I disable TLS 1.0 and 1.1 in apache?

In this config?
/etc/httpd/conf/extra/httpd-ssl.conf

Replace:
SSLProtocol All -SSLv2 -SSLv3

SSLProtocol TLSv1.2
 
Back
Top