• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Where has apache cipher config gone?

HostaHost

Regular Pleskian
In Plesk 10 on CentOS using Apache, the SSL cipher configuration was set in /etc/httpd/conf.d/ssl.conf via the SSLProtocol and SSLCipherSuite directives. In Plesk 11 on CentOS with Apache, that entire section of the config file is commented out. I can't find anything related to ciphers in the core apache files, in the conf.d files, in the /var/www/vhosts/domain/conf/ files or in the files in /usr/local/psa/admin/conf/generated/.

Where has the cipher configuration gone?
 
There is following default values if you haven't specified these directives:

for SSLCipherSuite it is ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP

If you have istalled mod_ssl you can create file /etc/httpd/conf.d/ssl.conf with following content:

<IfModule mod_ssl.c>
SSLProtocol all -SSLv2
SSLCipherSuite это ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP
</IfModule>

BTW, SSLCipherSuite HIGH:MEDIUM:!ADH would be better.
 
We've found we need the following to get it to pass security scans:

SSLProtocol all -SSLv2
SSLHonorCipherOrder On
SSLCipherSuite RC4-SHA:HIGH:!ADH:!DH:!MD5:!aNULL:!eNULL:!SSLv2:!LOW
 
We've found we need the following to get it to pass security scans:

SSLProtocol all -SSLv2
SSLHonorCipherOrder On
SSLCipherSuite RC4-SHA:HIGH:!ADH:!DH:!MD5:!aNULL:!eNULL:!SSLv2:!LOW

Thank you for useful information!
 
Back
Top