From cb4d9413b7481b9767ff5d2ec09e22bdc76e74e3 Mon Sep 17 00:00:00 2001 From: Mathieu Date: Wed, 31 Mar 2021 12:30:08 +0200 Subject: [PATCH] web: removed duplicate host headers Fixes: https://github.com/jitsi/docker-jitsi-meet/issues/568 --- web/rootfs/defaults/meet.conf | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/rootfs/defaults/meet.conf b/web/rootfs/defaults/meet.conf index 4b10234..b6f89f8 100644 --- a/web/rootfs/defaults/meet.conf +++ b/web/rootfs/defaults/meet.conf @@ -81,12 +81,10 @@ location /etherpad/ { proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; - proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; proxy_pass {{ .Env.ETHERPAD_URL_BASE }}/; proxy_set_header X-Forwarded-For $remote_addr; proxy_buffering off; - proxy_set_header Host {{ .Env.XMPP_DOMAIN }}; } {{ end }}