Naposledy aktivní 6 months ago

Revize a25228c20f72e1d579f6aabe001f49f1f0960ed3

10-ssl.conf Raw
1# SSL protocols to use
2ssl_protocols = !SSLv2 !SSLv3
fix_apache2.sh Raw
1cat <<EOF >> /etc/apache2/conf.d/x_disable_SSLv3.conf
2<IfModule mod_ssl.c>
3SSLProtocol all -SSLv2 -SSLv3
4</IfModule>
5EOF
6/etc/init.d/apache2 restart
haproxy.conf Raw
1# this is a haproxy config snippet, include me into /etc/haproxy/haproxy.conf
2bind :443 ssl crt <crt> ciphers <ciphers> no-sslv3
main.cf Raw
1# this is a postfix config snippet, include me into /etc/postfix/main.cf
2smtp_tls_protocols=!SSLv2,!SSLv3
3smtp_tls_mandatory_protocols=!SSLv2,!SSLv3
4smtpd_tls_protocols=!SSLv2,!SSLv3
5smtpd_tls_mandatory_protocols=!SSLv2,!SSLv3
ssl.conf Raw
1# this is a nginx config snippet, put me into /etc/nginx/conf.d
2ssl_session_cache shared:SSL:10m;
3ssl_session_timeout 10m;
4ssl_protocols TLSv1 TLSv1.1 TLSv1.2;