Skip to content

Commit fdfb89c

Browse files
committed
Do not allow all IPs for juptyer server
1 parent a92584e commit fdfb89c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

resources/jupyter/jupyter_notebook_config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99
c = get_config()
1010
# https://jupyter-notebook.readthedocs.io/en/stable/config.html
11-
c.NotebookApp.ip = "*"
11+
# TODO: not needed to open this port?
12+
# c.NotebookApp.ip = "*"
1213
c.NotebookApp.port = 8090
1314
c.NotebookApp.notebook_dir = "./"
1415
c.NotebookApp.open_browser = False

0 commit comments

Comments
 (0)