waja a révisé ce gist 11 years ago. Aller à la révision
1 file changed, 4 insertions
main.cf(fichier créé)
| @@ -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 a révisé ce gist 11 years ago. Aller à la révision
1 file changed, 6 insertions
fix_apache2.sh(fichier créé)
| @@ -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 | |