From 702002945450950f5299ff5fd5d596c96a819fd5 Mon Sep 17 00:00:00 2001 From: RealRancor Date: Wed, 7 Oct 2015 07:01:21 +0200 Subject: [PATCH] Set KeepAlive timeout settings to sensible defaults --- .../performance_tuning/webserver_tips.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/admin_manual/configuration_server/performance_tuning/webserver_tips.rst b/admin_manual/configuration_server/performance_tuning/webserver_tips.rst index deb3e065c..7de3e8770 100644 --- a/admin_manual/configuration_server/performance_tuning/webserver_tips.rst +++ b/admin_manual/configuration_server/performance_tuning/webserver_tips.rst @@ -58,13 +58,14 @@ KeepAlive should be configured with sensible defaults The KeepAlive directive enables persistent HTTP connections, allowing multiple requests to be sent over the same TCP connection. This reduces latency by as -much as 50%. +much as 50%. Especially in combination with the periodic checks of the sync +client the following settings are recommended: .. code-block:: apache KeepAlive On - KeepAliveTimeout 2 - MaxKeepAliveRequests 10 + KeepAliveTimeout 100 + MaxKeepAliveRequests 200 mod_gzip ^^^^^^^^