1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 03:54:15 +00:00

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
commit 8995f47c13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ server {
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for;
proxy_set_header Host $host:$server_port; 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_set_header X-Forwarded-Ssl off;
proxy_connect_timeout 1800; proxy_connect_timeout 1800;
proxy_read_timeout 1800; proxy_read_timeout 1800;