diff --git a/CHANGELOG.md b/CHANGELOG.md index 4509fb34..5bb057a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project tries to adhere to [Semantic Versioning](https://semver.org/spe ### Added ### Changed +- increased gunicorn timeout and workers ### Fixed diff --git a/compose/production/django/start b/compose/production/django/start index eaa89f8f..25a222fe 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 --timeout=120 --chdir=/app +/venv/bin/gunicorn config.wsgi --bind 0.0.0.0:5000 --workers=4 --timeout=120 --chdir=/app