From c4b0b30c4f655aa6fcac23ac101c3e2aedb237fa Mon Sep 17 00:00:00 2001 From: Tobias Huste Date: Wed, 18 Jun 2025 15:53:16 +0200 Subject: [PATCH] Add host header to Zammad nginx config --- roles/zammad/templates/nginx-zammad.conf.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/zammad/templates/nginx-zammad.conf.j2 b/roles/zammad/templates/nginx-zammad.conf.j2 index 4fbaae1c..94284549 100644 --- a/roles/zammad/templates/nginx-zammad.conf.j2 +++ b/roles/zammad/templates/nginx-zammad.conf.j2 @@ -61,6 +61,7 @@ server { proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; + proxy_set_header Host $http_host; proxy_set_header CLIENT_IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme;