No Description

gunicorn.py 211B

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