pyrot_uwsgi.ini 567 B

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