From cce63c4707a5693fe7d75f500dc7095b5474494c Mon Sep 17 00:00:00 2001 From: paulmwatson Date: Wed, 10 Jan 2024 13:13:13 +0200 Subject: [PATCH] Tweaked gunicorn config --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 832f45863..4b8955a91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,4 +38,4 @@ WORKDIR /app RUN bundle install -CMD gunicorn --limit-request-line 7168 --worker-class gevent pombola.wsgi:application -t 600 --log-file - -b 0.0.0.0:5000 \ No newline at end of file +CMD gunicorn --workers 5 --worker-class gevent --timeout 30 --max-requests 10000 --max-requests-jitter 100 --limit-request-line 7168 --log-file - -b 0.0.0.0:5000 pombola.wsgi:application