]> TLD Linux GIT Repositories - packages/apache.git/commitdiff
- add defaults and special MPM directives
authorBartosz Świątek <shadzik@tld-linux.org>
Sat, 25 Feb 2012 19:56:02 +0000 (20:56 +0100)
committerBartosz Świątek <shadzik@tld-linux.org>
Sat, 25 Feb 2012 19:56:02 +0000 (20:56 +0100)
apache-mpm.conf

index dc17d60652d1edc9d0e0cc87e3c4e6ef4ca182e6..419b43868d443e10fb6516db187596da9f0292fe 100644 (file)
@@ -36,3 +36,20 @@ MinSpareServers                5
 MaxSpareServers                 10
 MaxRequestWorkers      150
 MaxConnectionsPerChild   5
+
+<IfModule mpm_prefork_module>
+</IfModule>
+
+<IfModule mpm_worker_module>
+       MaxSpareThreads 250
+       MinSpareThreads 75
+       ThreadLimit 1920
+       ThreadsPerChild 25
+</IfModule>
+
+<IfModule mpm_event_module>
+       MaxSpareThreads 250
+       MinSpareThreads 75
+       ThreadLimit 1920
+       ThreadsPerChild 25
+</IfModule>