From 59066a3ff3d2548514b12716ac76bd60f61d1275 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Tue, 8 Nov 2011 22:07:58 +0000 Subject: [PATCH] Change def timeout from a nasty 5 mins to a more reasonable 1min git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199485 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/core.xml | 2 +- include/httpd.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index 1469efbe85..a9e9866feb 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -4081,7 +4081,7 @@ server Amount of time the server will wait for certain events before failing a request TimeOut seconds -TimeOut 300 +TimeOut 60 server configvirtual host diff --git a/include/httpd.h b/include/httpd.h index 89f91059bb..464f4a1286 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -156,7 +156,7 @@ extern "C" { /** The timeout for waiting for messages */ #ifndef DEFAULT_TIMEOUT -#define DEFAULT_TIMEOUT 300 +#define DEFAULT_TIMEOUT 60 #endif /** The timeout for waiting for keepalive timeout until next request */ -- 2.40.0