[SKIP CI] fix template

This commit is contained in:
Robert Kaussow 2019-06-12 09:18:04 +02:00
parent 5c757082b5
commit ff5108218e
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
#jinja2: lstrip_blocks: True
# {{ ansible_managed }}
ssl_ciphers '{{ nginx_tls_ciphers | join(":") }}';
ssl_ciphers {{ nginx_tls_ciphers | join(":") }};
ssl_prefer_server_ciphers on;
{% if nginx_tls_ecdh_curve is defined %}
ssl_ecdh_curve {{ nginx_tls_ecdh_curve }};
ssl_ecdh_curve {{ nginx_tls_ecdh_curve | join(":") }};
{% endif %}
{% if nginx_tls_dhparam_file is defined %}
ssl_dhparam {{ nginx_tls_dhparam_file }};