uwsgi.ini 180 B

1234567891011
  1. [uwsgi]
  2. chdir = /app
  3. module = ginger:app
  4. master = true
  5. processes = 4
  6. threads = 2
  7. http = 0.0.0.0:5000
  8. pidfile = /tmp/ginger.pid
  9. vacuum = true
  10. enable-threads = true
  11. lazy-apps = true