在Ubuntu 16.04服务器上,我安装了Jupyterhub并将其设置为使用letsencrypt生成的证书:
nano jupyterhub_config.py
c.JupyterHub.logo_file = '/var/www/nancy/imgs/jupyter-lef-logo.png'
c.JupyterHub.ssl_cert = '/etc/letsencrypt/live/nancy.org/fullchain.pem'
c.JupyterHub.ssl_key = '/etc/letsencrypt/live/nancy.org/privkey.pem'
问题在于letencrypt会在很短的时间内(3个月)更新证书,因此我需要停止并重新启动Jupyterhub来更新证书。
除了停止它之外,是否还有其他方法可以使jupyterhub知道新证书?