gunicorn-cfg.py 198 B

1234567891011
  1. # -*- encoding: utf-8 -*-
  2. """
  3. Copyright (c) 2019 - present AppSeed.us
  4. """
  5. bind = '0.0.0.0:5005'
  6. workers = 1
  7. accesslog = '-'
  8. loglevel = 'debug'
  9. capture_output = True
  10. enable_stdio_inheritance = True