Permalink
Fetching contributors…
Cannot retrieve contributors at this time. Cannot retrieve contributors at this time
16 lines (14 sloc) 544 Bytes
[supervisord]
# Required for file-handling icw unicode and the like
environment = LANG=en_US.UTF-8, LC_ALL=en_US.UTF-8, LC_LANG=en_US.UTF-8
[program:uwsgi-{{ prefix }}]
user = {{ application_user }}
command = {{ venv }}/bin/uwsgi --ini {{ project_home }}src/{{ project_name }}/conf/uwsgi.ini
autostart = true
autorestart = true
stderr_logfile = {{ project_home }}log/uwsgi_err.log
stdout_logfile = {{ project_home }}log/uwsgi_out.log
stopsignal = QUIT
environment =
DJANGO_SETTINGS_MODULE={{ settings_module }},
VIRTUAL_ENV={{ venv }}