From d7918d59acca53a3f6a6cedd92a210f121224506 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 20 May 2021 15:30:13 +0200 Subject: [PATCH] fix proxy_ignore_headers handling --- templates/etc/nginx/sites-available/vhost.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/etc/nginx/sites-available/vhost.j2 b/templates/etc/nginx/sites-available/vhost.j2 index 66961bd..55bba10 100644 --- a/templates/etc/nginx/sites-available/vhost.j2 +++ b/templates/etc/nginx/sites-available/vhost.j2 @@ -101,7 +101,7 @@ server { {% endif %} {% if location.proxy_ignore_headers is defined and location.proxy_ignore_headers %} - proxy_ignore_headers {{ ignore | join(" ") }}; + proxy_ignore_headers {{ location.proxy_ignore_headers | join(" ") }}; {% endif %} {% endif %} {% if location.custom_options is defined and location.custom_options %}