From 556cc02e2d49c7054576e82cdc7ec77a80bca53f Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 13 Aug 2018 21:41:12 +0200 Subject: [PATCH] fix typo --- templates/etc/nginx/conf.d/header.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/etc/nginx/conf.d/header.conf.j2 b/templates/etc/nginx/conf.d/header.conf.j2 index a5fec9f..88a06b6 100644 --- a/templates/etc/nginx/conf.d/header.conf.j2 +++ b/templates/etc/nginx/conf.d/header.conf.j2 @@ -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 is defined %} "{{ 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;