11 lines
200 B
Python
11 lines
200 B
Python
# Gunicorn config variables
|
|
loglevel = "info"
|
|
errorlog = "-" # stderr
|
|
accesslog = "-" # stdout
|
|
worker_tmp_dir = "/dev/shm"
|
|
graceful_timeout = 120
|
|
timeout = 120
|
|
keepalive = 5
|
|
threads = 4
|
|
workers = 4
|