diff --git a/README.md b/README.md index 3b5983150..d67846f5b 100644 --- a/README.md +++ b/README.md @@ -304,7 +304,7 @@ The following steps describes how to set up the Django side of the production de 7. Set up a unit/systemd file as recommended in [Gunicorn docs](https://docs.gunicorn.org/en/latest/deploy.html#systemd) (feel free to use the socket or an IP and port). An example of command to write in the file is (assuming a virtual environment is installed in `venv` under the main pipeline folder): ```bash - ExecStart=/opt/vast-pipeline/venv/bin/gunicorn -w 3 -k gevent --worker-connections=1000 --timeout 120 -b 127.0.0.1:8000 webinterface.wsgi + ExecStart=/opt/vast-pipeline/venv/bin/gunicorn -w 3 -k gevent --worker-connections=1000 --timeout 120 --limit-request-line 6000 -b 127.0.0.1:8000 webinterface.wsgi ``` 8. Finalise the installation of the unit file. Some good instructions on where to put, link and install the unit file are described in the [Jupyter Hub docs](https://jupyterhub.readthedocs.io/en/stable/installation-guide-hard.html#setup-systemd-service)