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

worker_class = "eventlet"
workers = multiprocessing.cpu_count() * 2 + 1
bind = "0.0.0.0:3031"
timeout = 90
keepalive = 3600
preload_app = True