docs: add scheme to nginx proxy configuration

This commit is contained in:
lesion
2022-09-21 11:34:38 +02:00
parent 4e90ae9bda
commit cb1213e935

View File

@@ -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;
}
}