-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using a server worker as a forward proxy #513
Comments
Jupyter-server-proxy already has |
Some web services respond based on /, i.e., the browser automatically requests host/x , but through the jupyter-server-proxy, the real address can be accessed is host/jupyter_subpath/proxy/{{port}}/x , through the server worker can intercept the host/x, and instead request the host/jupyter_subpath/proxy/{{port}}/x response |
Unfortunately that's not possible. Jupyter Server only has control of paths under |
I mean, a server worker can do that. |
Proposed change
Some service responses are based on the root path, but the actual address that can be accessed is based on the subpath /jupyter_subpath/proxy/{{port}}/, can there be a solution to solve this kind of problem, e.g., using a server worker as a forward proxy?
Alternative options
Optional
Who would use this feature?
Some service responses are based on the root path, but the actual address that can be accessed is based on the subpath /jupyter_subpath/proxy/{{port}}/
(Optional): Suggest a solution
server worker as a forward proxy
The text was updated successfully, but these errors were encountered: