haldis/uwsgi.ini

24 lines
581 B
INI
Raw Normal View History

2015-03-31 13:11:40 +00:00
# mysite_uwsgi.ini file
[uwsgi]
# Django-related settings
# the base directory (full path)
2015-03-31 14:02:30 +00:00
chdir = /home/james/production
2015-03-31 16:04:30 +00:00
# Callables
module = app
callable = app
2015-03-31 13:11:40 +00:00
# the virtualenv (full path)
2015-03-31 16:04:30 +00:00
virtualenv = /home/james/production/env
2015-03-31 13:11:40 +00:00
# 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