mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-01 14:02:12 +08:00
This reverts commit 892453da7e.
openQA still had problems with the very long request, so I just
did an ugly hack to get the request under the limit instead.
11 lines
294 B
Django/Jinja
11 lines
294 B
Django/Jinja
<VirtualHost *:80>
|
|
ServerName {{ external_hostname|default(ansible_nodename) }}
|
|
{% if deployment_type is defined %}
|
|
<Location /apache-status>
|
|
SetHandler server-status
|
|
</Location>
|
|
ProxyPass /apache-status !
|
|
{% endif %}
|
|
Include conf.d/openqa-common.inc
|
|
</VirtualHost>
|