Files
fedora-infra_ansible/roles/openqa/server/templates/openqa.conf.httpd.j2
Adam Williamson 1c95ec9a35 Revert "openQA: set higher LimitRequestLine in httpd vhost config"
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.
2022-10-21 17:12:15 -07:00

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>