From cb1213e9356c9ce162c6e2209a778ff492a23d84 Mon Sep 17 00:00:00 2001 From: lesion Date: Wed, 21 Sep 2022 11:34:38 +0200 Subject: [PATCH] docs: add scheme to nginx proxy configuration --- docs/install/nginx.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/install/nginx.md b/docs/install/nginx.md index b3847578..def3ec62 100644 --- a/docs/install/nginx.md +++ b/docs/install/nginx.md @@ -29,6 +29,8 @@ server { location @proxy { proxy_set_header Host $host; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; proxy_pass http://127.0.0.1:13120; } }