##// END OF EJS Templates
Merge branch 'fix/https' of https://github.com/satra/ipython into satra-fix/https
Brian E. Granger -
r4686:e78c6e83 merge
parent child Browse files
Show More
@@ -263,7 +263,10 b' class IPythonNotebookApp(BaseIPythonApplication):'
263
263
264 def start(self):
264 def start(self):
265 ip = self.ip if self.ip else '[all ip addresses on your system]'
265 ip = self.ip if self.ip else '[all ip addresses on your system]'
266 self.log.info("The IPython Notebook is running at: http://%s:%i" % (ip, self.port))
266 proto = 'https' if self.certfile else 'http'
267 self.log.info("The IPython Notebook is running at: %s://%s:%i" % (proto,
268 ip,
269 self.port))
267 ioloop.IOLoop.instance().start()
270 ioloop.IOLoop.instance().start()
268
271
269 #-----------------------------------------------------------------------------
272 #-----------------------------------------------------------------------------
@@ -26,8 +26,19 b' you want inline figures, you must manually select the ``inline`` backend::'
26
26
27 $ ipython notebook --pylab=inline
27 $ ipython notebook --pylab=inline
28
28
29 You can start the notebook to communicate via a secure protocol mode using a
30 self-signed certificate by typing::
31
32 $ ipython notebook --certfile=mycert.pem
33
34 .. note::
35
36 A self-signed certificate can be generated with openssl. For example:
37
38 openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mycert.pem -out mycert.pem
39
29 This server uses the same ZeroMQ-based two process kernel architecture as
40 This server uses the same ZeroMQ-based two process kernel architecture as
30 the QT Console as well Tornado for serving HTTP requests. Some of the main
41 the QT Console as well Tornado for serving HTTP/S requests. Some of the main
31 features of the Notebook include:
42 features of the Notebook include:
32
43
33 * Display rich data (png/html/latex/svg) in the browser as a result of
44 * Display rich data (png/html/latex/svg) in the browser as a result of
General Comments 0
You need to be logged in to leave comments. Login now