Index: server/fedora/config/etc/httpd/conf/httpd.conf
===================================================================
--- server/fedora/config/etc/httpd/conf/httpd.conf	(revision 707)
+++ server/fedora/config/etc/httpd/conf/httpd.conf	(revision 708)
@@ -5,9 +5,22 @@
 MaxKeepAliveRequests 1000
 KeepAliveTimeout 5
-MinSpareServers 5
-MaxSpareServers 20
-StartServers 8
-MaxClients 256
-MaxRequestsPerChild 4000
+
+<IfModule mpm_prefork_module>
+    MinSpareServers 5
+    MaxSpareServers 20
+    StartServers 8
+    MaxClients 256
+    MaxRequestsPerChild 4000
+</IfModule>
+
+<IfModule mpm_worker_module>
+    StartServers 3
+    MinSpareThreads 75
+    MaxSpareThreads 250
+    ServerLimit 16
+    ThreadsPerChild 25
+    MaxClients 400
+    MaxRequestsPerChild 10000
+</IfModule>
 
 LoadModule auth_basic_module modules/mod_auth_basic.so
