diff --git a/Configuration.md b/Configuration.md index 457f535..e2b5ab3 100644 --- a/Configuration.md +++ b/Configuration.md @@ -110,11 +110,13 @@ location /sub { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Host $http_host; + proxy_set_header X-Forwarded-Host $http_host; + proxy_set_header X-Forwarded-Port $server_port; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Range $http_range; - proxy_set_header If-Range $http_if_range; + proxy_set_header If-Range $http_if_range; proxy_redirect off; - proxy_pass http://127.0.0.1:2053; + proxy_pass http://127.0.0.1:2096; } ```