[release-monitoring] Fix bootstrap path

Signed-off-by: Michal Konečný <mkonecny@redhat.com>
This commit is contained in:
Michal Konečný 2021-10-27 16:02:38 +02:00 committed by kevin
parent 2633f1fcae
commit 2a575da45d

View file

@ -27,11 +27,19 @@ StartServers 20
ServerLimit 100
MaxRequestsPerChild 2000
MaxRequestWorkers 100
{% if env == 'staging' %}
<Directory "/usr/local/lib/python3.9/anitya/static/docs/html/">
{% else %}
<Directory "/usr/local/lib/python3.8/anitya/static/docs/html/">
{% endif %}
AllowOverride None
Require all granted
</Directory>
{% if env == 'staging' %}
<Directory "/usr/local/lib/python3.9/site-packages/anitya/static/">
{% else %}
<Directory "/usr/local/lib/python3.8/site-packages/anitya/static/">
{% endif %}
AllowOverride None
Require all granted
</Directory>