From 79b6e9a157949b982b474e0e9973187e40fce50a Mon Sep 17 00:00:00 2001 From: Amin <23167933+aminsaedi@users.noreply.github.com> Date: Mon, 30 Sep 2024 12:34:15 -0400 Subject: [PATCH] Add `X-Forwarded-Host` to nginx example [skip ci] (#1169) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6d835db..5029bb5 100644 --- a/README.md +++ b/README.md @@ -599,6 +599,7 @@ server { proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Host $host; proxy_set_header X-NginX-Proxy true; + proxy_set_header X-Forwarded-Host $http_host; proxy_pass http://localhost:5000; } }