Update doc: do not suggest depricated config key

According to changelog JupyterHub.bind_url has been added in 0.9.0.
This commit is contained in:
lumbric
2019-07-03 12:05:41 +02:00
committed by GitHub
parent 276ef26161
commit 2f15d5128e

View File

@@ -17,10 +17,12 @@ satisfy the following:
Let's start out with needed JupyterHub configuration in `jupyterhub_config.py`:
```python
# Force the proxy to only listen to connections to 127.0.0.1
c.JupyterHub.ip = '127.0.0.1'
# Force the proxy to only listen to connections to 127.0.0.1 (on port 8000)
c.JupyterHub.bind_url = 'http://127.0.0.1:8000'
```
(For Jupyterhub < 0.9 use `c.JupyterHub.ip = '127.0.0.1'`.)
For high-quality SSL configuration, we also generate Diffie-Helman parameters.
This can take a few minutes: