]> granicus.if.org Git - apache/commitdiff
Add a configuration block for the OS/2 MPM.
authorBrian Havard <bjh@apache.org>
Wed, 24 Apr 2002 14:24:35 +0000 (14:24 +0000)
committerBrian Havard <bjh@apache.org>
Wed, 24 Apr 2002 14:24:35 +0000 (14:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94780 13f79535-47bb-0310-9956-ffa450edef68

docs/conf/httpd-std.conf.in

index 5d17d90fcf215af42a7ac504c3ef27ef927bae2c..c74b29da688128922d85ceebe47a5b4261f8e026 100644 (file)
@@ -192,6 +192,19 @@ MaxThreads            1000
 MaxRequestsPerChild      0
 </IfModule>
 
+# OS/2 MPM
+# StartServers ......... Number of server processes to maintain
+# MinSpareThreads ...... Minimum number of idle threads per process, 
+#                         to handle request spikes
+# MaxSpareThreads ...... Maximum number of idle threads per process
+# MaxRequestsPerChild .. Maximum number of connections per server process
+<IfModule mpmt_os2.c>
+StartServers           2
+MinSpareThreads        5
+MaxSpareThreads       10
+MaxRequestsPerChild    0
+</IfModule>
+
 #
 # Listen: Allows you to bind Apache to specific IP addresses and/or
 # ports, in addition to the default. See also the <VirtualHost>