website_uwsgi.ini 640 B

123456789101112131415161718192021
  1. [uwsgi]
  2. binary-path = /opt/h0v1n8-website-env/bin/uwsgi
  3. # Django-related settings
  4. # the base directory (full path)
  5. chdir = /opt/h0v1n8-website-env/pyRot/webgui
  6. # Django's wsgi file
  7. module = webgui.wsgi
  8. # the virtualenv (full path)
  9. home = /opt/h0v1n8-website-env/
  10. # process-related settings
  11. # master
  12. master = true
  13. # maximum number of worker processes
  14. processes = 10
  15. # the socket (use the full path to be safe
  16. socket = /opt/h0v1n8-env/website/website/webgui.sock
  17. # ... with appropriate permissions - may be needed
  18. chmod-socket = 666
  19. # clear environment on exit
  20. vacuum = true