##// END OF EJS Templates
add some documentation for URL prefix options
Andrew Straw -
Show More
@@ -357,6 +357,21 b' uncomment and edit is here::'
357 You can then start the notebook and access it later by pointing your browser to
357 You can then start the notebook and access it later by pointing your browser to
358 ``https://your.host.com:9999``.
358 ``https://your.host.com:9999``.
359
359
360 Running with a different URL prefix
361 ===================================
362
363 The notebook dashboard (i.e. the default landing page with an overview
364 of all your notebooks) typically lives at a URL path of
365 "http://localhost:8888/". If you want to have it, and the rest of the
366 notebook, live under a sub-directory,
367 e.g. "http://localhost:8888/ipython/", you can do so with command-line
368 options like these:
369
370 $ ipython notebook --NotebookApp.webapp_settings="\
371 {'base_project_url':'/ipython/', \
372 'base_kernel_url':'/ipython/', \
373 'static_url_prefix':'/ipython/static/'}"
374
360 .. _notebook_format:
375 .. _notebook_format:
361
376
362 The notebook format
377 The notebook format
General Comments 0
You need to be logged in to leave comments. Login now