Tuesday, November 1, 2011

Enabling ssl version 3 in apache

Advertisements

This post explains how to enable ssl version3 and TLS v1.0 using apache httpd webserver.

Edit the httpd.conf file and add the following lines to it.


[root@server ~]# vi /etc/httpd/conf/httpd.conf
#SSL3


<IfDefine SSL>
SSLProtocol -all +SSLv3 +TLSv1
SSLCipherSuite SSLv3:+HIGH:+MEDIUM
</IfDefine>

Now restart the httpd service.
[root@server ~]# /etc/init.d/httpd restart

Thats it.

No comments:

Post a Comment

Be nice. That's all.