summaryrefslogtreecommitdiffstats
path: root/docs/conf/httpd-std.conf
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--docs/conf/httpd-std.conf16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/conf/httpd-std.conf b/docs/conf/httpd-std.conf
index 89c6db2fd9..1b7d168410 100644
--- a/docs/conf/httpd-std.conf
+++ b/docs/conf/httpd-std.conf
@@ -130,6 +130,22 @@ ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
+# worker MPM
+# StartServers: initial number of server processes to start
+# MaxClients: maximum number of server processes allowed to start
+# MinSpareThreads: minimum number of worker threads which are kept spare
+# MaxSpareThreads: maximum number of worker threads which are kept spare
+# ThreadsPerChild: constant number of worker threads in each server process
+# MaxRequestsPerChild: maximum number of requests a server process serves
+<IfModule worker.c>
+StartServers 3
+MaxClients 8
+MinSpareThreads 5
+MaxSpareThreads 75
+ThreadsPerChild 25
+MaxRequestsPerChild 0
+</IfModule>
+
# perchild MPM
# NumServers: constant number of server processes
# StartThreads: initial number of worker threads in each server process