aboutsummaryrefslogtreecommitdiffstats
path: root/checker/src/gunicorn.conf.py
blob: a3829515742fa6817524ba2994ab3be7553c0b38 (plain) (blame)
1
2
3
4
5
6
7
# This is a configuration file required by the checker.
import multiprocessing
worker_class = "eventlet"
workers = multiprocessing.cpu_count()*2+1
bind = "0.0.0.0:3031"
timeout = 90
keepalive = 3600