diff --git a/docs/docs/configuration/setup.rst b/docs/docs/configuration/setup.rst index b788551..8f1fa9c 100644 --- a/docs/docs/configuration/setup.rst +++ b/docs/docs/configuration/setup.rst @@ -19,6 +19,8 @@ originating from CORS_. Also, privacy-protecting browser addons such as location /isso { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Script-Name /isso; + proxy_set_header Host $host; + proxy_set_header X-Forwarded-Proto $scheme; proxy_pass http://localhost:8080; } } diff --git a/docs/docs/quickstart.rst b/docs/docs/quickstart.rst index 49179d7..6a1a70b 100644 --- a/docs/docs/quickstart.rst +++ b/docs/docs/quickstart.rst @@ -111,6 +111,7 @@ configuration looks like this: proxy_pass http://localhost:8080; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; + proxy_set_header X-Forwarded-Proto $scheme; } }