gunicorn.py 424 B

123456789101112
  1. accesslog = '/opt/mcfi/access.log'
  2. backlog = 2048
  3. bind = [ '127.0.0.1:9000' ]
  4. capture_output = True # Redirect stdout/stderr to errorlog
  5. chdir = '/opt/mcfi'
  6. errorlog = '/opt/mcfi/error.log'
  7. graceful_timeout = 30
  8. loglevel = 'debug' # debug info warning error critical
  9. reload = True
  10. timeout = 30
  11. workers = 4