Skip to content

Admin

SSL

Check Settings

## Check Settings
grep -i -r "SSLProtocol" /etc/httpd
grep -i -r "SSLCipherSuite" /etc/httpd

## Change Settings
vim /etc/httpd/conf.d/ssl.conf
#  Current Settings:
#  SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
#  SSLCipherSuite HIGH:!aNULL:!MD5:!3DES

## Restart after Changes
service httpd restart