2015-01-13 22:45:07 -05:00
|
|
|
[uwsgi]
|
2016-05-17 23:39:35 -04:00
|
|
|
socket = :{{ uwsgi_app_port }}
|
2015-01-13 22:45:07 -05:00
|
|
|
master = true
|
|
|
|
processes = 8
|
|
|
|
|
2016-05-17 23:39:35 -04:00
|
|
|
chdir = {{ uwsgi_app_root_path }}
|
|
|
|
virtualenv = {{ uwsgi_app_venv }}
|
|
|
|
module = {{ uwsgi_app_executable }}
|
2015-03-24 08:05:57 -04:00
|
|
|
|
2016-05-17 23:39:35 -04:00
|
|
|
{% for env_var, env_value in uwsgi_app_envs.items() %}
|
2015-03-24 08:05:57 -04:00
|
|
|
env = {{ env_var | upper }}={{ env_value }}
|
|
|
|
{% endfor %}
|