geeksbot_v2/services/web/gunicorn.conf
2019-09-14 11:28:53 -08:00

10 lines
214 B
Plaintext

import multiprocessing
bind = "0.0.0.0:8000"
workers = multiprocessing.cpu_count() * 2 + 1
worker_class = "gevent"
worker_connections = 4096
timeout = 180
backlog = 2048
pidfile = "/tmp/geeksbot.pid"
reload = True