Skip to content
Snippets Groups Projects
Commit 9c721100 authored by Robin Sonnabend's avatar Robin Sonnabend
Browse files

Rename uwsgi option variables to app_*

This affects harakiri, enable_threads and mules.
parent 91a82b22
No related branches found
No related tags found
2 merge requests!3Unify uwsgi python,!2Unify Unification Branches
......@@ -8,18 +8,18 @@ master =
processes = 4
workers = 4
prio = -5
harakiri = {{uwsgi_harakiri|default(5)}}
harakiri = {{app_harakiri|default(5)}}
buffer-size=32768
{% if uwsgi_enable_threads %}
{% if app_enable_threads|default(false) %}
enable-threads =
{% endif %}
{% if uwsgi_options is defined %}
{% for option in uwsgi_options %}
{% if app_uwsgi_options is defined %}
{% for option in app_uwsgi_options %}
{{option}}{% if "=" not in option %} ={% endif %}
{% endfor %}
{% endif %}
{% for mule in range(uwsgi_mules) %}
{% for mule in range(app_mules|default(0)) %}
mule =
{% endfor %}
#umask = 227
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment