Skip to content

Commit

Permalink
Listen on all interfaces (IPv4 and IPv6)
Browse files Browse the repository at this point in the history
  • Loading branch information
benz0li committed Jan 28, 2025
1 parent adc5307 commit 0c9e971
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion base/conf/jupyter/etc/jupyter/jupyter_server_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
from jupyter_core.paths import jupyter_data_dir

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

# https://github.com/jupyter/notebook/issues/3130
Expand Down

0 comments on commit 0c9e971

Please sign in to comment.