| @@ -0,0 +1,4 @@ | |||
| 1 | + | smtp_tls_protocols=!SSLv2,!SSLv3 | |
| 2 | + | smtp_tls_mandatory_protocols=!SSLv2,!SSLv3 | |
| 3 | + | smtpd_tls_protocols=!SSLv2,!SSLv3 | |
| 4 | + | smtpd_tls_mandatory_protocols=!SSLv2,!SSLv3 | |
waja / gist:fd5fe6b55a294d0a9d1ce54a3a5d26a0
Last active 3 months ago
waja revised this gist 12 years ago · 6566c02
1 file changed, 4 insertions
waja revised this gist 12 years ago · 70e2c49
1 file changed, 6 insertions
| @@ -0,0 +1,6 @@ | |||
| 1 | + | cat <<EOF >> /etc/apache2/conf.d/x_disable_SSLv3.conf | |
| 2 | + | <IfModule mod_ssl.c> | |
| 3 | + | SSLProtocol all -SSLv2 -SSLv3 | |
| 4 | + | </IfModule> | |
| 5 | + | EOF | |
| 6 | + | /etc/init.d/apache2 restart | |