Skip to content

Commit

Permalink
Update jupyter_notebook_config.py
Browse files Browse the repository at this point in the history
Latest release of notebook (5.7.0) introduces bug when `c.NotebookApp.ip` is set to '*'. See jupyter/notebook#3946 for details.
  • Loading branch information
jharris1679 authored Sep 24, 2018
1 parent 137a295 commit a94ecfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base-notebook/jupyter_notebook_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import stat

c = get_config()
c.NotebookApp.ip = '*'
c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.port = 8888
c.NotebookApp.open_browser = False

Expand Down

0 comments on commit a94ecfb

Please sign in to comment.