What kind of help are you looking for?
http://kb.odin.com/en/123160 - did you see steps suggested in this article?
This article is not correct for the default pages on apache server for plesk 11.5 servers. It is correct for plesk 12 servers.
On plesk 11.5 the file /etc/httpd/conf/plesk.conf.d/server.conf has the lines
SSLProtocol -ALL +SSLv3 +TLSv1
SSLCipherSuite ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
in it.
so placing the correct lines in /etc/httpd/conf/httpd.conf wil not work. They will be overruled by the plesk generated rules in de default file.
Fixing this is simple: apache takes the last rules it gets. the solution on plesk 11.5 is:
create a file
/etc/httpd/conf.d/zzzzzzzz.conf
give it enough z's to be sure it will be seen last by apache.
enter in this files:
SSLProtocol All -SSLv2 -SSLv3
SSLHonorCipherOrder On
SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:!MEDIUM:!LOW:!SSLv2:!EXPORT
SSLInsecureRenegotiation off
These rules now will overwrite the server.conf rules, as they overwritten the httpd.conf rules
To be absolutly safe you can also enter these directives to /etc/httpd/conf.d/ssl.conf
as always: restart apache
and test at
https://www.ssllabs.com/ssltest/index.html
disclaimer: ONLY TESTED ON PLESK 11.5, not on any other versions and these rules are not in the plesk 12 default file.
regards
Jan