Skip to content
Snippets Groups Projects

Unify uwsgi python

Merged Hinrikus Wolf requested to merge unify_uwsgi_python into master
1 file
+ 5
5
Compare changes
  • Side-by-side
  • Inline
@@ -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
Loading