Daily Archives: September 12, 2023

SSL v3 goes to the dogs – POODLE kills off protocol

Apache To disable SSLv3 on your Apache server you can configure it using the following. SSLProtocol All -SSLv2 -SSLv3 This will give you support for TLSv1.0, TLSv1.1 and TLSv1.2, but explicitly removes support for SSLv2 and SSLv3. Check the config … Continue reading

Posted in apache, My Linux, windows | Comments Off on SSL v3 goes to the dogs – POODLE kills off protocol

Disable TLS 1.0 /1.1 in Apache Server

1. Open Apache configuration Open terminal and run the following command to open Apache configuration file. $ sudo vi /etc/apache2/httpd.conf Also read : How to Redirect POST Request Data in .htaccess 2. Disable TLS 1.0/1.1 Look for the following line in bold … Continue reading

Posted in apache, My Linux | Comments Off on Disable TLS 1.0 /1.1 in Apache Server