Patching for POODLE on your server – Disabling SSL 3.0 Updated on August 16, 2021 by Jeff Matson 1 Minutes, 7 Seconds to Read While we have fully disabled SSL 3.0 on all shared servers, VPS and dedicated customers have not been modified to prevent changes to any customer configurations that you may have. In this article, we will show you how to disable SSL 3.0 on your VPS or dedicated server. Note: You must have root access to your server to make this change. If you do not have root access, you may submit a verified ticket to support and they will be happy to make these changes for you. Disabling SSL 3.0 in Apache Log in as root via SSH. Copy your Apache template: cp /var/cpanel/templates/apache2/main.default /var/cpanel/templates/apache2/main.local Open your main.local file to line 56 nano +56 /var/cpanel/templates/apache2/main.local Remove the following line: SSLProtocol [% main.sslprotocol.item.sslprotocol %] At around line 233, locate the line that looks like this: # SSLCipherSuite can be set in WHM under ‘Apache Global Configuration’ [% IF main.sslciphersuite.item.sslciphersuite.length %]SSLCipherSuite [% main.sslciphersuite.item.sslciphersuite %][% END %] Remove the line below the comment and replace it with the following 2 lines: SSLProtocol All -SSLv2 -SSLv3 SSLCipherSuite ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM Save the file by pressing Ctrl+X, and pressing Y to save your changes. Rebuild the Apache configuration with the following command: /scripts/rebuildhttpdconf Finally, restart Apache: service httpd restart Share this Article Related Articles Force HTTPS with the .htaccess File How to Fix the Insecure SSL Error due to SHA-1 Deprecation Troubleshooting SSL Connection Errors: How to Fix HTTPS Issues What Is SSL and Why Is It Important? How to Install Let’s Encrypt SSL on Ubuntu with Certbot Installing SSLs and Generating CSRs in cPanel Forcing your Website’s visitors to use the shared SSL How to Manage AutoSSL Certificates in cPanel How to Purchase an SSL Certificate for your Dedicated Server How to Enable a SSL on a WordPress Site