配置jupyterHub时的歧义

时间:2018-11-16 04:44:28

标签: jupyterhub

我正在设置JupyterHub,我的Jupyter笔记本服务器运行在地址172.30.56.243端口8888上,而我的JupyterHub运行在地址172.30.56.96端口443上。

我的配置文件(jupyterhub_config.py):

c.JupyterHub.ip = '172.30.56.96'
c.JupyterHub.port = 443
c.JupyterHub.ssl_key = '/my/path/1234.key'
c.JupyterHub.ssl_cert = '/my/path/1234.cert'

在使用的文档中,域名link

c.JupyterHub.ssl_key = '/etc/letsencrypt/live/example.com/privkey.pem'
c.JupyterHub.ssl_cert = '/etc/letsencrypt/live/example.com/fullchain.pem'

我的问题是如何使用IP地址将jupyterhub与jupyter笔记本链接?因为我没有域名。

0 个答案:

没有答案