From ba2247a4b27afc5ae6985a61c65e20dda1a73454 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 4 Apr 2017 18:59:44 +0100 Subject: [PATCH] apache only supports MaxClients up to 256 Signed-off-by: Michael Tremer --- config/httpd/server-tuning.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/httpd/server-tuning.conf b/config/httpd/server-tuning.conf index 8f1eae5a2c..90410186d9 100644 --- a/config/httpd/server-tuning.conf +++ b/config/httpd/server-tuning.conf @@ -20,7 +20,7 @@ KeepAliveTimeout 15 MinSpareServers 1 MaxSpareServers 10 StartServers 2 -MaxClients 1000 +MaxClients 256 # # The following directives modify normal HTTP response behavior to -- 2.39.5