removed support for TLSv1 and TLSv1.1. Fixes #66

This commit is contained in:
Diego Lendoiro 2017-09-14 14:44:18 +02:00
parent 4db19ba453
commit 9674afb4d5
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ server {
ssl on;
ssl_certificate /etc/ssl/certs/certificate.crt;
ssl_certificate_key /etc/ssl/certs/certificate.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_protocols TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
ssl_session_tickets off;