haldis/uwsgi.ini
Tom Naessens a9390ed4e8 Try this
2015-03-31 15:59:35 +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/app
# Django's wsgi file
module = 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