From a79f41e3c6509b67100574195366ae1c3034208d Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Mon, 12 Aug 2024 15:17:59 +0200 Subject: [PATCH] :pencil: Add proto header in reverse proxy instructions Closes #1680 --- apps/docs/self-hosting/deploy/manual.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/docs/self-hosting/deploy/manual.mdx b/apps/docs/self-hosting/deploy/manual.mdx index 59226faf4..21e1556d2 100644 --- a/apps/docs/self-hosting/deploy/manual.mdx +++ b/apps/docs/self-hosting/deploy/manual.mdx @@ -135,6 +135,7 @@ server { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; proxy_cache_bypass $http_upgrade; } }