1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/core/nginx/conf/tls.conf

9 lines
353 B
Plaintext
Raw Normal View History

2017-09-24 18:43:14 +02:00
ssl_protocols TLSv1.1 TLSv1.2;
ssl_ciphers 'ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384';
2017-09-24 18:43:14 +02:00
ssl_prefer_server_ciphers on;
ssl_session_timeout 10m;
2017-11-15 13:34:00 +02:00
ssl_session_tickets off;
2017-09-24 18:43:14 +02:00
ssl_certificate {{ TLS[0] }};
ssl_certificate_key {{ TLS[1] }};
2017-12-17 15:46:20 +02:00
ssl_dhparam /conf/dhparam.pem;