haldis/uwsgi.ini
Tom Naessens 8c464ed73c Nope
2015-03-31 16:02:30 +02:00

27 lines
644 B
INI

# mysite_uwsgi.ini file
[uwsgi]
plugins = python
# Django-related settings
# the base directory (full path)
chdir = /home/james/production
# Django's wsgi file
module = app.wsgi
# the virtualenv (full path)
home = /home/james/production/env
# something about ImportError
no-site = true
# process-related settings
# master
master = true
# maximum number of worker processes
processes = 1
# the socket (use the full path to be safe
socket = /tmp/james.sock
# ... with appropriate permissions - may be needed
chmod-socket = 664
# clear environment on exit
vacuum = true