]> granicus.if.org Git - apache/commitdiff
Add some runtime configuration variable for the beos mpm.
authorDavid Reid <dreid@apache.org>
Fri, 16 Nov 2001 14:50:26 +0000 (14:50 +0000)
committerDavid Reid <dreid@apache.org>
Fri, 16 Nov 2001 14:50:26 +0000 (14:50 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91977 13f79535-47bb-0310-9956-ffa450edef68

docs/conf/httpd-std.conf

index 131ae2e0aa0e3b462ac86d15e21888003db7599d..8fe1bac486d4d87c33d8b115e6d87fd741a735bf 100644 (file)
@@ -173,6 +173,17 @@ ThreadsPerChild 250
 MaxRequestsPerChild  0
 </IfModule>
 
+# BeOS MPM
+# StartThreads: how many threads do we initially spawn?
+# MaxClients:   max number of threads we can have (1 thread == 1 client)
+# RequestsPerThread: maximum number of requests each thread will process before
+#                    exiting
+<IfModule beos.c>
+StartThreads               10
+MaxClients                 50
+RequestsPerThread       10000
+</IfModule>    
+
 #
 # Listen: Allows you to bind Apache to specific IP addresses and/or
 # ports, in addition to the default. See also the <VirtualHost>