From 3f805d68a1b9064101e24d0c923838dce1b716dd Mon Sep 17 00:00:00 2001 From: Christopher Bennell Date: Wed, 25 Mar 2026 13:04:19 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=AC=20docs:=20Add=20Forwarded=20Header?= =?UTF-8?q?s=20to=20Nginx=20SSL=20Proxy=20Template=20(#12379)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add X-Forwarded-Proto, X-Forwarded-For and Host headers in nginx proxy config. Addresses #12378. --- client/nginx.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/nginx.conf b/client/nginx.conf index c91c47a23f..906b3af128 100644 --- a/client/nginx.conf +++ b/client/nginx.conf @@ -86,9 +86,15 @@ server { # location /api { # proxy_pass http://api:3080/api; +# proxy_set_header X-Forwarded-Proto $scheme; +# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; +# proxy_set_header Host $host; # } # location / { # proxy_pass http://api:3080; +# proxy_set_header X-Forwarded-Proto $scheme; +# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; +# proxy_set_header Host $host; # } #}