Skip to content

Commit a85eb43

Browse files
authored
Merge pull request #2204 from manics/jupyter-server-listen-all-ifaces
jupyter_server_config.py: Listen on all interfaces (IPv4 and IPv6)
2 parents 0b16cf8 + 368f827 commit a85eb43

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

images/base-notebook/jupyter_server_config.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
from jupyter_core.paths import jupyter_data_dir
1010

1111
c = get_config() # noqa: F821
12-
c.ServerApp.ip = "0.0.0.0"
12+
# Listen on all interfaces (ipv4 and ipv6)
13+
c.ServerApp.ip = ""
1314
c.ServerApp.open_browser = False
1415

1516
# to output both image/svg+xml and application/pdf plot formats in the notebook file

0 commit comments

Comments
 (0)