Merge pull request #617 from 0x6d61726b/patch-01_X-Forwarded-Proto

Fixed nginx X-Forwarded-Proto to match the protocol ("http", "https")
This commit is contained in:
catborise
2023-10-30 15:53:40 +03:00
committed by GitHub

View File

@@ -14,7 +14,7 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for;
proxy_set_header Host $host:$server_port;
proxy_set_header X-Forwarded-Proto $remote_addr;
proxy_set_header X-Forwarded-Proto http;
proxy_set_header X-Forwarded-Ssl off;
proxy_connect_timeout 1800;
proxy_read_timeout 1800;