gunicorn.yml 558 B

123456789101112131415161718192021222324
  1. # Set up main GUnicorn options.
  2. # See: http://docs.gunicorn.org/en/stable/settings.html
  3. # Commented values are the application defaults.
  4. # Directory where the WSGI server data are stored.
  5. data_dir: 'data'
  6. # Set app_mode to either 'prod', 'test' or 'dev'.
  7. # 'prod' is normal running mode. 'test' is used for running test suites.
  8. # 'dev' is similar to normal mode but with reload and debug enabled.
  9. app_mode: 'dev'
  10. #listen_addr: '0.0.0.0'
  11. #listen_port: 8000
  12. #workers: 4
  13. #worker_class: 'gevent'
  14. #max_requests: 512
  15. #user: ''
  16. #group: ''
  17. #preload_app: True