123456789101112
  1. [uwsgi]
  2. http = :9090
  3. plugin = python
  4. wsgi-file = main.py
  5. single-interpreter = true
  6. enable-threads = true
  7. master = true
  8. process = 3
  9. callable = app
  10. socket = /tmp/flask.sock
  11. chmod-socket = 666