1
0
ohmyform/docker/nginx/conf/tls.conf
Leopere 30dc60670f Created Docker directory and cleanup
Move container things to Docker subdir as it doesn't need to litter the root of the repo up.
2019-07-11 20:02:39 -04:00

7 lines
328 B
Plaintext

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';
ssl_prefer_server_ciphers on;
ssl_session_timeout 10m;
ssl_certificate {{ TLS[0] }};
ssl_certificate_key {{ TLS[1] }};
ssl_dhparam /certs/dhparam.pem;