Skip to content
Snippets Groups Projects
Commit a55b9d1b authored by Jan Frenzel's avatar Jan Frenzel Committed by Elias Werner
Browse files

Apply 1 suggestion(s) to 1 file(s)

parent 97852984
No related branches found
No related tags found
4 merge requests!333Draft: update NGC containers,!322Merge preview into main,!319Merge preview into main,!258Data Analytics restructuring
...@@ -111,14 +111,17 @@ Fill in the form with decent values. ...@@ -111,14 +111,17 @@ Fill in the form with decent values.
Possible entries for your Jupyter configuration (`.jupyter/jupyter_notebook*config.py*`). Possible entries for your Jupyter configuration (`.jupyter/jupyter_notebook*config.py*`).
```Bash ```Bash
c.NotebookApp.certfile = u'<path-to-cert>/mycert.pem' c.NotebookApp.keyfile = c.NotebookApp.certfile = u'<path-to-cert>/mycert.pem'
u'<path-to-cert>/mykey.key' c.NotebookApp.keyfile = u'<path-to-cert>/mykey.key'
# set ip to '*' otherwise server is bound to localhost only c.NotebookApp.ip = '*' # set ip to '*' otherwise server is bound to localhost only
c.NotebookApp.ip = '*'
c.NotebookApp.open_browser = False c.NotebookApp.open_browser = False
# copy hashed password from the jupyter_notebook_config.json c.NotebookApp.password = u'<your # copy hashed password from the jupyter_notebook_config.json
hashed password here>' c.NotebookApp.port = 9999 c.NotebookApp.allow_remote_access = True c.NotebookApp.password = u'<your hashed password here>'
c.NotebookApp.port = 9999
c.NotebookApp.allow_remote_access = True
``` ```
Note: `<path-to-cert>` - path to key and certificate files, for example: Note: `<path-to-cert>` - path to key and certificate files, for example:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment