Gurucool_Test / misc /etc /gunicorn.conf.py
ashwinR's picture
Upload 245 files
b7a7f32
raw
history blame
229 Bytes
import os
workers = os.environ.get("GUNICORN_WORKERS", 9)
bind = "0.0.0.0:80"
worker_tmp_dir = "/dev/shm"
graceful_timeout = int(os.environ.get("UVICORN_GRACEFUL_TIMEOUT",15))
timeout = int(os.environ.get("UVICORN_TIMEOUT",30))