From 7909c30a11cb5c6a62086cc0f14010c125f6ae6f Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Thu, 18 Dec 2025 11:56:25 -0600 Subject: [PATCH] Increased general timeout for Mission Portal httpd.conf to allow for slower hardware and longer agent runs The original issue was that trigger agent run and collect reports from MP UI was timing out due to long agent runs. The fix was in place in masterfiles at https://github.com/cfengine/masterfiles/pull/3051 but we neglected to add it to the distribution httpd.conf here in buildscripts. Ticket: ENT-13291 Changelog: title --- deps-packaging/apache/httpd.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deps-packaging/apache/httpd.conf b/deps-packaging/apache/httpd.conf index d0622bd17..01e3e1cf9 100644 --- a/deps-packaging/apache/httpd.conf +++ b/deps-packaging/apache/httpd.conf @@ -249,6 +249,10 @@ SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1 SetHandler "proxy:fcgi://127.0.0.1:9000" + +# Timeout defaults to 60 but that is too short for some operations on slower hub hardware +Timeout 120 + Options -Indexes +FollowSymLinks +MultiViews