Fix handling of the base url (#6943)

This commit is contained in:
Jeremy Tuloup 2023-06-23 12:35:10 +02:00 committed by GitHub
parent 8efd94a0a8
commit 7f1a2f49ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -333,7 +333,7 @@ class JupyterNotebookApp(NotebookConfigShimMixin, LabServerApp):
(
rf"/{self.file_url_prefix}/((?!.*\.ipynb($|\?)).*)",
web.RedirectHandler,
{"url": "/edit/{0}"},
{"url": ujoin(self.serverapp.base_url, "/edit/{0}")},
)
)
self.handlers.append(("/?", RedirectHandler))