Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: notebook password authentication howto #867

Closed
satra opened this issue Oct 13, 2011 · 2 comments
Closed

doc: notebook password authentication howto #867

satra opened this issue Oct 13, 2011 · 2 comments

Comments

@satra
Copy link
Contributor

satra commented Oct 13, 2011

need to add the following info to the docs.

indeed there is vary basic authentication available and is highly recommended to do this over an SSL connection. for security reasons this password cannot be provided on the command line and has to be encoded in the notebook config file.

here is the relevant section from my ipython_notebook_config.py

the documentation for creating the certificate file is on the web.

http://ipython.org/ipython-doc/dev/interactive/htmlnotebook.html

# The full path to an SSL/TLS certificate file.
c.IPythonNotebookApp.certfile = u'/users/satra/mycert.pem'

# The FQDN or IP for WebSocket connections. The default will work fine when the
# server is listening on localhost, but this needs to be set if the ip option is
# used. It will be used as the hostname part of the WebSocket url:
# ws://hostname/path.
c.IPythonNotebookApp.ws_hostname = 'fullname.mit.edu'

# The IP address the notebook server will listen on.
c.IPythonNotebookApp.ip = '*'

c.IPythonNotebookApp.password = u'password'
@fperez
Copy link
Member

fperez commented Oct 13, 2011

Thanks @satra. I've tagged is as high-priority so it stays on the radar, I really hope we'll do it before 0.12, as this will be an obvious request from many people once the nb is in the wild.

@minrk minrk closed this as completed in c64ec5b Oct 20, 2011
@minrk
Copy link
Member

minrk commented Oct 20, 2011

docs updated (Note that Brian changed the IPythonNotebookApp to just NotebookApp, so update your config accordingly)

mattvonrocketstein pushed a commit to mattvonrocketstein/ipython that referenced this issue Nov 3, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants