From fadc3d7f171b0ba607ab9051259f1d1d0d504de5 Mon Sep 17 00:00:00 2001 From: Luc Didry Date: Mon, 18 Mar 2024 16:17:55 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20=E2=80=94=20Document=20gunicorn?= =?UTF-8?q?=20socket=20binding=20with=20an=20example?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/deployment/systemd.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/deployment/systemd.md b/docs/deployment/systemd.md index 3a2e582..106db12 100644 --- a/docs/deployment/systemd.md +++ b/docs/deployment/systemd.md @@ -21,5 +21,5 @@ caption: /etc/systemd/system/argos-server.service Please note that it might be better to use Gunicorn with a Uvicorn worker, [as specified in the Uvicorn docs](https://www.uvicorn.org/#running-with-gunicorn): ```bash -gunicorn example:app -w 4 -k uvicorn.workers.UvicornWorker -``` \ No newline at end of file +gunicorn example:app -w 4 -k uvicorn.workers.UvicornWorker -b '127.0.0.1:8000' +```