From c60a9881613d3101d059f72d43e84e06ccf91371 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 13 Feb 2018 12:50:09 +0100 Subject: [PATCH] in httpd/limits.conf, turn off settings that are problematic in f27 --- httpd/limits.conf | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/httpd/limits.conf b/httpd/limits.conf index 046e0c8..1375a6d 100644 --- a/httpd/limits.conf +++ b/httpd/limits.conf @@ -1,7 +1,12 @@ # for better stability StartServers 8 -MinSpareServers 5 -MaxSpareServers 20 +# in fedora27 this won't load, symptom was +# Invalid command 'MaxSpareServers' +# I did find mentions of loading the prefork module, +# which ... it seemed to be loaded already +# so I comment it out altogether as a first approximation +# MinSpareServers 5 +# MaxSpareServers 20 ServerLimit 256 MaxClients 256 MaxRequestsPerChild 50 -- 2.43.0