From dab490c201eb0a5c222b924e0ef5e5d3f90ec555 Mon Sep 17 00:00:00 2001 From: nesnoj Date: Mon, 9 Dec 2024 09:36:26 +0100 Subject: [PATCH] Fix gunicorn workers param --- compose/production/django/start | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/production/django/start b/compose/production/django/start index f112ea84..2bacb3d7 100644 --- a/compose/production/django/start +++ b/compose/production/django/start @@ -9,4 +9,4 @@ python /app/manage.py compilemessages python /app/manage.py collectstatic --noinput --ignore=mvts python /app/manage.py compress --force python /app/manage.py collectstatic --noinput --ignore=mvts -/venv/bin/gunicorn config.wsgi --bind 0.0.0.0:5000 --worker=4 --timeout=240 --chdir=/app +/venv/bin/gunicorn config.wsgi --bind 0.0.0.0:5000 --workers=4 --timeout=240 --chdir=/app