From c016773b9816ad9be4ffc8643c30457e87c094e3 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 28 Feb 2017 11:32:08 +0000 Subject: [PATCH] apache: Allow more processes/connections as the same time MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In large networks, when ever multiple clients connect at the same time and request the proxy.pac configuration file, apache rate-limited requests so that some clients did not get a response and therefore could not connect to the Internet. This allows apache to handle more connections at the same time. Suggested-by: Thoralf Söldenwagner Signed-off-by: Michael Tremer --- config/httpd/server-tuning.conf | 5 ++--- config/rootfiles/core/110/filelists/files | 1 + 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/httpd/server-tuning.conf b/config/httpd/server-tuning.conf index 183ce80fa0..8f1eae5a2c 100644 --- a/config/httpd/server-tuning.conf +++ b/config/httpd/server-tuning.conf @@ -19,9 +19,8 @@ KeepAliveTimeout 15 MinSpareServers 1 MaxSpareServers 10 -StartServers 1 -MaxClients 10 -MaxRequestsPerChild 100 +StartServers 2 +MaxClients 1000 # # The following directives modify normal HTTP response behavior to diff --git a/config/rootfiles/core/110/filelists/files b/config/rootfiles/core/110/filelists/files index f4ce9898ef..b996e48aa4 100644 --- a/config/rootfiles/core/110/filelists/files +++ b/config/rootfiles/core/110/filelists/files @@ -1,5 +1,6 @@ etc/system-release etc/issue +etc/httpd/conf/server-tuning.conf etc/rc.d/init.d/unbound srv/web/ipfire/cgi-bin/index.cgi srv/web/ipfire/cgi-bin/vpnmain.cgi -- 2.39.5