From ea6993703e98dfa2285b5f0043313f99f1141f27 Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Fri, 18 Sep 2015 03:22:43 -0700 Subject: [PATCH] Add review changes to public server doc --- docs/source/public_server.rst | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/docs/source/public_server.rst b/docs/source/public_server.rst index d79a3cd4d..46ab63606 100644 --- a/docs/source/public_server.rst +++ b/docs/source/public_server.rst @@ -74,8 +74,7 @@ your Jupyter folder in your home directory, ``~/.jupyter``, e.g.:: # Get notebook configuration and add hashed password c = get_config() - c.NotebookApp.password = - u'sha1:67c9e60bb8b6:9ffede0825894254b2e042ea597d771089e11aed' + c.NotebookApp.password = u'sha1:67c9e60bb8b6:9ffede0825894254b2e042ea597d771089e11aed' Using SSL for encrypted communication ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -151,17 +150,17 @@ following:: # Set options for certfile, ip, password, and toggle off browser auto-opening c.NotebookApp.certfile = u'/absolute/path/to/your/certificate/mycert.pem' - c.NotebookApp.ip = u'*' # where * is the desired ip address + # Set ip to '*' to bind on all interfaces (ips) for the public server + c.NotebookApp.ip = '*' c.NotebookApp.password = u'sha1:bcd259ccf...' c.NotebookApp.open_browser = False # It is a good idea to set a known, fixed port for server access c.NotebookApp.port = 9999 -You can then start the notebook and access it later by pointing your browser -to ``https://your.host.com:9999`` after starting the ``jupyter notebook`` -client. - +You can then start the notebook using the ``jupyter notebook`` command. You may +access the public server by pointing your browser to ``https://your.host.com:9999`` +where ``your.host.com`` is your public server's domain. Firewall Setup ~~~~~~~~~~~~~~