Skip to content
Snippets Groups Projects
Commit cd3ac33a authored by Lars Beckers's avatar Lars Beckers
Browse files

uwsgi-python: add bullseye's python version to uwsgi config

parent aeee05b2
No related branches found
No related tags found
1 merge request!14Bullseye Compatibility
......@@ -44,10 +44,12 @@ log-x-forwarded-for =
{% if app_python_version == 2 %}
plugin = python27
{% elif app_python_version == 3 %}
{% if debian_version == "stretch" %}
{% if ansible_distribution_release == "stretch" %}
plugin = python35
{% elif debian_version == "buster" %}
{% elif ansible_distribution_release == "buster" %}
plugin = python37
{% elif ansible_distribution_release == "bullseye" %}
plugin = python39
{% endif %}
{% endif %}
{% if app_venv != '' %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment