Spaces:
Build error
Build error
File size: 229 Bytes
b7a7f32 |
1 2 3 4 5 6 7 8 |
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))
|