From 892453da7e7b8ac5a2e1514cfae29bab7ba3c4ec Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 21 Oct 2022 08:38:05 -0700 Subject: [PATCH] openQA: set higher LimitRequestLine in httpd vhost config The openQA job scheduler was hitting 414 errors today because an update has so many builds there are more than 8190 characters (the default limit) in the POST request. Let's bump the limit to 16000. Signed-off-by: Adam Williamson --- roles/openqa/server/templates/openqa.conf.httpd.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/openqa/server/templates/openqa.conf.httpd.j2 b/roles/openqa/server/templates/openqa.conf.httpd.j2 index 7557a2c446..784f4d57b0 100644 --- a/roles/openqa/server/templates/openqa.conf.httpd.j2 +++ b/roles/openqa/server/templates/openqa.conf.httpd.j2 @@ -7,4 +7,5 @@ ProxyPass /apache-status ! {% endif %} Include conf.d/openqa-common.inc + LimitRequestLine 16000