How to change SSL 3.0 to TLS 1.0 or TLS 1.1

xuancong6000

Verified User
Joined
Oct 12, 2012
Messages
79
First I had changed default of file httpd-ssl.conf (/etc/httpd/conf/extra/httpd-ssl.conf) from:
Code:
SSLProtocol -ALL +TLSv1
SSLHonorCipherOrder On
SSLCipherSuite RC4-SHA:HIGH:!ADH
57169938.tls10.png
to:
Code:
SSLProtocol -ALL +SSLv3 +TLSv1
SSLHonorCipherOrder On
SSLCipherSuite RC4-SHA:HIGH:!ADH

and restart httpd, now it work:
57170807.ssl30.png
, but when I change backwards from:

Code:
SSLProtocol -ALL +SSLv3 +TLSv1
SSLHonorCipherOrder On
SSLCipherSuite RC4-SHA:HIGH:!ADH
to:
Code:
SSLProtocol -ALL +TLSv1
SSLHonorCipherOrder On
SSLCipherSuite RC4-SHA:HIGH:!ADH
and restart httpd, now httpd is working but SSL don't work( I can't access to https://mydomain.com but can access to http://mydomain.com)

Please help me how can I change backwards
I had upgrade OpenSSL and SSH to ended version by update.script ọn this: http://forum.directadmin.com/showthread.php?t=22587
 

Attachments

  • TLS1.0.png
    TLS1.0.png
    11.3 KB · Views: 211
  • SSL3.0.png
    SSL3.0.png
    16.3 KB · Views: 179
Last edited:
Back
Top