Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. [uwsgi]
  2. module = project.wsgi:application
  3. master = true
  4. pidfile = django.uwsgi.pid
  5. enable-threads = true
  6. http = 127.0.0.1:8000
  7. processes = 5
  8. # respawn processes taking more than 50 seconds
  9. harakiri = 50
  10. # respawn processes after serving 5000 requests
  11. max-requests = 5000
  12. # clear environment on exit
  13. vacuum = true
  14. # optional path to a virtualenv
  15. home = venv
  16. # background the process
  17. daemonize = django.uwsgi.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement