From a94ecfb1368a495f8f43504cf37748f9a225aaec Mon Sep 17 00:00:00 2001 From: Josh Harris Date: Mon, 24 Sep 2018 19:29:22 -0400 Subject: [PATCH] Update jupyter_notebook_config.py Latest release of notebook (5.7.0) introduces bug when `c.NotebookApp.ip` is set to '*'. See https://github.com/jupyter/notebook/issues/3946 for details. --- base-notebook/jupyter_notebook_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-notebook/jupyter_notebook_config.py b/base-notebook/jupyter_notebook_config.py index ef9c24b0..7bd21bb2 100644 --- a/base-notebook/jupyter_notebook_config.py +++ b/base-notebook/jupyter_notebook_config.py @@ -8,7 +8,7 @@ import errno import stat c = get_config() -c.NotebookApp.ip = '*' +c.NotebookApp.ip = '0.0.0.0' c.NotebookApp.port = 8888 c.NotebookApp.open_browser = False