Change gunicorn workers from 1 to 4

see https://docs.gunicorn.org/en/stable/design.html#how-many-workers
This commit is contained in:
lawtancool 2020-05-03 20:16:55 -07:00 committed by GitHub
parent 8698f92ac9
commit d0bac60300
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
bind = '127.0.0.1:8000'
backlog = 2048
workers = 1
workers = 4
worker_class = 'sync'
worker_connections = 1000
timeout = 20