Show More
@@ -30,17 +30,6 b' you want inline figures, you must manually select the ``inline`` backend::' | |||
|
30 | 30 | |
|
31 | 31 | $ ipython notebook --pylab=inline |
|
32 | 32 | |
|
33 | You can start the notebook to communicate via a secure protocol mode using a | |
|
34 | self-signed certificate by typing:: | |
|
35 | ||
|
36 | $ ipython notebook --certfile=mycert.pem | |
|
37 | ||
|
38 | .. note:: | |
|
39 | ||
|
40 | A self-signed certificate can be generated with openssl. For example: | |
|
41 | ||
|
42 | openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mycert.pem -out mycert.pem | |
|
43 | ||
|
44 | 33 | This server uses the same ZeroMQ-based two process kernel architecture as |
|
45 | 34 | the QT Console as well Tornado for serving HTTP/S requests. Some of the main |
|
46 | 35 | features of the Notebook include: |
@@ -227,6 +216,31 b' key bindings you need to remember are:' | |||
|
227 | 216 | letter :kbd:`h` after :kbd:`Ctrl-m`) and IPython will show you the remaining |
|
228 | 217 | available keybindings. |
|
229 | 218 | |
|
219 | Security | |
|
220 | ======== | |
|
221 | ||
|
222 | You can protect your notebook server with a *very* simple single-password by | |
|
223 | setting the :attr:`NotebookApp.password` configurable. It is best to do this in | |
|
224 | your :file:`ipython_notebook_config.py`, e.g.:: | |
|
225 | ||
|
226 | # Password to use for web authentication | |
|
227 | c.NotebookApp.password = u'super secret' | |
|
228 | ||
|
229 | because specifying it on the command-line will make it visible to other | |
|
230 | processes on your machine with access to :command:`ps`. | |
|
231 | ||
|
232 | When using a password, it is a good idea to also use SSL, so that your password | |
|
233 | is not sent in the clear. You can start the notebook to communicate via a secure | |
|
234 | protocol mode using a self-signed certificate by typing:: | |
|
235 | ||
|
236 | $ ipython notebook --certfile=mycert.pem | |
|
237 | ||
|
238 | .. note:: | |
|
239 | ||
|
240 | A self-signed certificate can be generated with openssl. For example:: | |
|
241 | ||
|
242 | $ openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mycert.pem -out mycert.pem | |
|
243 | ||
|
230 | 244 | |
|
231 | 245 | Notebook document format |
|
232 | 246 | ======================== |
General Comments 0
You need to be logged in to leave comments.
Login now