Skip to content
Snippets Groups Projects
Verified Commit 9fa345e8 authored by Olivier Benz's avatar Olivier Benz
Browse files

Listen on all interfaces (IPv4 and IPv6)

parent 165286b3
No related branches found
No related tags found
No related merge requests found
Pipeline #38061 passed
...@@ -10,7 +10,8 @@ from pathlib import Path ...@@ -10,7 +10,8 @@ from pathlib import Path
from jupyter_core.paths import jupyter_data_dir from jupyter_core.paths import jupyter_data_dir
c = get_config() # noqa: F821 # type: ignore c = get_config() # noqa: F821 # type: ignore
c.ServerApp.ip = "0.0.0.0" # Listen on all interfaces (IPv4 and IPv6)
c.ServerApp.ip = ""
#c.ServerApp.open_browser = False #c.ServerApp.open_browser = False
# https://github.com/jupyter/notebook/issues/3130 # https://github.com/jupyter/notebook/issues/3130
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment