aboutsummaryrefslogtreecommitdiffstats
path: root/checker/src/gunicorn.conf.py
blob: b049e48f1cdfa64b796885016ec69cfced1ce6b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import multiprocessing

worker_class = "gevent"
workers = multiprocessing.cpu_count() * 2 + 1
bind = "0.0.0.0:3031"
timeout = 90
keepalive = 3600
max_requests = 100
preload_app = True
max_requests_jitter = 30