You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
389 B
11 lines
389 B
ssl_certificate {{ nginx_cert_path }};
|
|
ssl_certificate_key {{ nginx_key_path }};
|
|
ssl_dhparam /etc/nginx/ssl/dhparam.pem;
|
|
ssl_ciphers {{ nginx_ssl_ciphers_compat }};
|
|
ssl_protocols {{ nginx_ssl_protocols | join(' ') }};
|
|
ssl_session_cache shared:SSL:10m;
|
|
ssl_session_timeout 1h;
|
|
ssl_session_tickets off;
|
|
ssl_stapling on;
|
|
ssl_stapling_verify on;
|
|
ssl_trusted_certificate /etc/pki/tls/cert.pem;
|
|
|