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 = ...@@ -8,18 +8,18 @@ master =
processes = 4 processes = 4
workers = 4 workers = 4
prio = -5 prio = -5
harakiri = {{uwsgi_harakiri|default(5)}} harakiri = {{app_harakiri|default(5)}}
buffer-size=32768 buffer-size=32768
{% if uwsgi_enable_threads %} {% if app_enable_threads|default(false) %}
enable-threads = enable-threads =
{% endif %} {% endif %}
{% if uwsgi_options is defined %} {% if app_uwsgi_options is defined %}
{% for option in uwsgi_options %} {% for option in app_uwsgi_options %}
{{option}}{% if "=" not in option %} ={% endif %} {{option}}{% if "=" not in option %} ={% endif %}
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% for mule in range(uwsgi_mules) %} {% for mule in range(app_mules|default(0)) %}
mule = mule =
{% endfor %} {% endfor %}
#umask = 227 #umask = 227
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment