13 lines
246 B
Python
13 lines
246 B
Python
# Gunicorn config variables
|
|
loglevel = "info"
|
|
errorlog = "-" # stderr
|
|
accesslog = "-" # stdout
|
|
worker_tmp_dir = "/dev/shm"
|
|
graceful_timeout = 120
|
|
timeout = 30
|
|
keepalive = 5
|
|
worker_class = "gthread"
|
|
workers = 1
|
|
threads = 8
|
|
bind = "0.0.0.0:9000"
|