Disable SSLv3 In Centos
Description:
Short post on disabling SSLv3 for POODLE in Centos 7.
To Resolve:
-
Run the following:
1 2 3
sudo vi /etc/httpd/conf.d/ssl.conf # Inside you can find the SSLProtocol directive. If this is not available, create it. Modify this to explicitly remove support for SSLv3: SSLProtocol all -SSLv3 -SSLv2
-
Save and close the file. Restart the service to enable your changes.
1 2 3 4
# Centos 7: sudo systemctl systemctl restart httpd # Centos 6: sudo service httpd restart
Comments