conf_gunicorn.py 198 B

123456789
  1. #bind = "0.0.0.0:8001"
  2. import core.config_template as conf
  3. bind = conf.BIND
  4. workers = conf.WORKERS
  5. worker_class = "sync"
  6. threads = conf.THREADS
  7. timeout = 30
  8. max_requests = 1000
  9. capture_output = True