From d0bac60300e465e80675da0a917ea2af11edbc82 Mon Sep 17 00:00:00 2001 From: lawtancool <26829131+lawtancool@users.noreply.github.com> Date: Sun, 3 May 2020 20:16:55 -0700 Subject: [PATCH] Change gunicorn workers from 1 to 4 see https://docs.gunicorn.org/en/stable/design.html#how-many-workers --- scripts/gunicorn.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gunicorn.conf b/scripts/gunicorn.conf index 8d2dcc6ad..3b2921a32 100644 --- a/scripts/gunicorn.conf +++ b/scripts/gunicorn.conf @@ -1,6 +1,6 @@ bind = '127.0.0.1:8000' backlog = 2048 -workers = 1 +workers = 4 worker_class = 'sync' worker_connections = 1000 timeout = 20