11 lines
289 B
Python
11 lines
289 B
Python
import os
|
|
|
|
|
|
bind = os.environ.get("GUNICORN_BIND", "127.0.0.1:8000")
|
|
workers = int(os.environ.get("GUNICORN_WORKERS", "2"))
|
|
threads = int(os.environ.get("GUNICORN_THREADS", "2"))
|
|
timeout = int(os.environ.get("GUNICORN_TIMEOUT", "30"))
|
|
accesslog = "-"
|
|
errorlog = "-"
|
|
capture_output = True
|
|
|