Configuration Settings

The notebook server can be run with a variety of command line arguments. A list of available options can be found below. Defaults for these options can also be set by creating a file named jupyter_notebook_config.py

One can create a jupyter_notebook_config.py file, with all the defaults commented out. Use the following command:

$ jupyter notebook --generate-config

Options

This list of options can be generated by running the following command:

$ jupyter notebook --help

Some of the relevant options are shown below

NotebookApp.base_url

Default: '/'

The base URL for the notebook server.

Leading and trailing slashes can be omitted, and will automatically be added.

NotebookApp.browser

Default: ''

Specify what command to use to invoke a web browser when opening the notebook. If not specified, the default browser will be determined by the web browser standard library module, which allows setting of the BROWSER environment variable to override it.

NotebookApp.certfile

Default: ''

The full path to an SSL/TLS certificate file.

NotebookApp.client_ca

Default: ''

The full path to a certificate authority certificate for SSL/TLS client authentication.

NotebookApp.config_file

Default: ''

Full path of a config file.

NotebookApp.keyfile

Default: ''

The full path to a private key file for usage with SSL/TLS.

For the full list of options, refer Jupyter Notebook docs

Last updated