We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf32cf3 commit cb4766dCopy full SHA for cb4766d
jupyter_server_proxy/standalone/app.py
@@ -200,6 +200,11 @@ def get_proxy_base_class(self) -> tuple[type | None, dict]:
200
201
def get_proxy_attributes(self) -> dict:
202
attributes = super().get_proxy_attributes()
203
+
204
+ # The ProxyHandler will be listening on "{base_url}/" instead of "{base_url}/{name}".
205
+ # Needed for correct header generation of "X-Forwarded-Context", etc.
206
+ attributes["proxy_base"] = "/"
207
208
attributes["requested_port"] = self.server_port
209
attributes["skip_authentication"] = self.skip_authentication
210
0 commit comments