YunoHost / packages_old

[not used anymore] YunoHost Debian package sources
http://yunohost.org
8 stars 7 forks source link

Correcting the SSLv3 disabling #33

Closed solarus0 closed 9 years ago

solarus0 commented 9 years ago

SSL Protocols line was missing

clawfire commented 9 years ago

:+1:

opi commented 9 years ago

I think we should include the full stack of ssl configuration :

ssl_session_timeout 5m;
ssl_session_cache shared:SSL:50m;
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers ALL:!aNULL:!eNULL:!LOW:!EXP:!RC4:!3DES:+HIGH:+MEDIUM;
add_header Strict-Transport-Security "max-age=31536000;";
solarus0 commented 9 years ago

I agree with you, it's done : https://github.com/solarus0/packages/commit/88cdda59978c48d0de8ab476aebe1bce1b156917

Kloadut commented 9 years ago

Thanks !