gunicorn.yml 418 B

1234567891011121314151617181920
  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. # Relative paths are relative to the `data_dir` value in `application.yml`.
  6. data_dir: .
  7. #listen_addr: '0.0.0.0'
  8. #listen_port: 8000
  9. #workers: 4
  10. #worker_class: 'gevent'
  11. #max_requests: 0
  12. #user: ''
  13. #group: ''
  14. #preload_app: True