| 123456789101112131415161718192021 |
- [uwsgi]
- binary-path = /opt/h0v1n8-website-env/bin/uwsgi
- # Django-related settings
- # the base directory (full path)
- chdir = /opt/h0v1n8-website-env/pyRot/webgui
- # Django's wsgi file
- module = webgui.wsgi
- # the virtualenv (full path)
- home = /opt/h0v1n8-website-env/
- # process-related settings
- # master
- master = true
- # maximum number of worker processes
- processes = 10
- # the socket (use the full path to be safe
- socket = /opt/h0v1n8-env/website/website/webgui.sock
- # ... with appropriate permissions - may be needed
- chmod-socket = 666
- # clear environment on exit
- vacuum = true
|