From ec5c3187169e13c44f82a41a6760aae91d991e1a Mon Sep 17 00:00:00 2001 From: matthew5025 Date: Fri, 7 Jun 2019 18:10:58 +0800 Subject: [PATCH] Updated config to listen on all interfaces As per https://github.com/jupyter/notebook/pull/3714, ip address has changed from '*' to '0.0.0.0' --- docs/source/public_server.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/public_server.rst b/docs/source/public_server.rst index edadbe3ffc..392c82c2c3 100644 --- a/docs/source/public_server.rst +++ b/docs/source/public_server.rst @@ -213,7 +213,7 @@ following:: c.NotebookApp.certfile = u'/absolute/path/to/your/certificate/mycert.pem' c.NotebookApp.keyfile = u'/absolute/path/to/your/certificate/mykey.key' # Set ip to '*' to bind on all interfaces (ips) for the public server - c.NotebookApp.ip = '*' + c.NotebookApp.ip = '0.0.0.0' c.NotebookApp.password = u'sha1:bcd259ccf...' c.NotebookApp.open_browser = False