Add links to SSL section in docs

This commit is contained in:
Carol Willing
2016-05-18 10:52:49 -07:00
parent 3e768b7297
commit 5c9e9d65b5
2 changed files with 8 additions and 5 deletions

View File

@@ -190,7 +190,10 @@ Some cert files also contain the key, in which case only the cert is needed. It
these files be put in a secure location on your server, where they are not readable by regular these files be put in a secure location on your server, where they are not readable by regular
users. users.
Note: In certain cases, e.g. behind SSL termination in nginx, allowing no SSL Note on **chain certificates**: If you are using a chain certificate, see also
[chained certificate for SSL](#chained-certificates-for-ssl) in the JupyterHub troubleshooting FAQ).
Note: In certain cases, e.g. **behind SSL termination in nginx**, allowing no SSL
running on the hub may be desired. To run the Hub without SSL, you must opt running on the hub may be desired. To run the Hub without SSL, you must opt
in by configuring and confirming the `--no-ssl` option, added as of [version 0.5](./changelog.html). in by configuring and confirming the `--no-ssl` option, added as of [version 0.5](./changelog.html).

View File

@@ -134,11 +134,11 @@ when starting JupyterHub or more conveniently set the `ssl_cert` variable in
JupyterHub's configuration file, `jupyterhub_config.py`. In `jupyterhub_config.py`, JupyterHub's configuration file, `jupyterhub_config.py`. In `jupyterhub_config.py`,
set: set:
c.JupyterHub.ssl_cert = example_host-chained.crt c.JupyterHub.ssl_cert = /path/to/example_host-chained.crt
c.JupyterHub.ssl_key = example_host.key c.JupyterHub.ssl_key = /path/to/example_host.key
and set ssl_cert to your_name-chained.crt and ssl_key to your private key. where `ssl_cert` is example-chained.crt and ssl_key to your private key.
Then restart JupyterHub. Then restart JupyterHub.
See also [JupyterHub SSL encryption](getting-started.md#ssl-encryption).