fix condition in template

This commit is contained in:
Robert Kaussow 2018-08-13 21:30:16 +02:00
parent 8f0c7479b9
commit 637d7d4405
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# {{ ansible_managed }}
# default header settings
{% if nginx_tls_enabled and nginx_hsts_enabled %}
add_header Strict-Transport-Security{% if nginx_hsts_options %} "{{ nginx_hsts_options | join("; ") }}{% endif %};
add_header Strict-Transport-Security{% if nginx_hsts_options is defined %} "{{ nginx_hsts_options | join("; ") }}{% endif %};
{% endif %}
add_header X-Frame-Options DENY;
add_header X-Content-Type-Options nosniff;