diff --git a/base/conf/jupyter/etc/jupyter/jupyter_server_config.py b/base/conf/jupyter/etc/jupyter/jupyter_server_config.py index bc03f5a87c3d989d18cd6c87eda67a4ba0e87caf..6a5b9d43dcd912f6215ad6af52c5669bed82c730 100644 --- a/base/conf/jupyter/etc/jupyter/jupyter_server_config.py +++ b/base/conf/jupyter/etc/jupyter/jupyter_server_config.py @@ -10,7 +10,8 @@ from pathlib import Path 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