Hi,
I am trying to make jupyter-server-proxy working. Don’t know how to debug it.
I am inside a docker container
My installation for jupyer-server-proxy is:
pip install jupyter-server-proxy
jupyter serverextension enable --sys-prefix jupyter_server_proxy
jupyter labextension install @jupyterlab/server-proxy
my configuration file is:
c.JupyterHub.authenticator_class = ‘nativeauthenticator.NativeAuthenticator’
c.Authenticator.admin_users = {‘jhub’}
c.NativeAuthenticator.admin_users = {‘jhub’}
c.serverProxy.servers={
‘test-server’: {
‘command’: [‘python3’, ‘-m’, ‘http.server’, ‘{port}’],
‘absolute_url’: False
}
}
I am launching jupyterhub as root:
sudo jupyterhub -f /etc/jupyterhub/jupyterhub_config.py --port 9090
I can registred my user admin, go the notebook page, but I can not see the Entry under the new menu in the notebook’s default tree view. I tried with jupyter lab, same result.
I can’t see any error printed on screen.
Is it an issue? How can I debug it?
Any help is really welcome as I am working on it for days!
Christian