Index: server/fedora/config/etc/httpd/conf/httpd.conf
===================================================================
--- server/fedora/config/etc/httpd/conf/httpd.conf	(revision 758)
+++ server/fedora/config/etc/httpd/conf/httpd.conf	(revision 759)
@@ -8,8 +8,9 @@
 <IfModule mpm_prefork_module>
     MinSpareServers 5
-    MaxSpareServers 20
+    MaxSpareServers 50
     StartServers 8
-    MaxClients 256
-    MaxRequestsPerChild 4000
+    ServerLimit 512
+    MaxClients 512
+    MaxRequestsPerChild 100000
 </IfModule>
 
@@ -18,8 +19,8 @@
     MinSpareThreads 75
     MaxSpareThreads 250
-    ServerLimit 16
-    ThreadsPerChild 25
-    MaxClients 400
-    MaxRequestsPerChild 10000
+    ServerLimit 32
+    ThreadsPerChild 32
+    MaxClients 1024
+    MaxRequestsPerChild 1000000
 </IfModule>
 
Index: server/fedora/config/etc/sysconfig/httpd
===================================================================
--- server/fedora/config/etc/sysconfig/httpd	(revision 759)
+++ server/fedora/config/etc/sysconfig/httpd	(revision 759)
@@ -0,0 +1,22 @@
+# Configuration file for the httpd service.
+
+#
+# The default processing model (MPM) is the process-based
+# 'prefork' model.  A thread-based model, 'worker', is also
+# available, but does not work with some modules (such as PHP).
+# The service must be stopped before changing this variable.
+#
+HTTPD=/usr/sbin/httpd.worker
+
+#
+# To pass additional options (for instance, -D definitions) to the
+# httpd binary at startup, set OPTIONS here.
+#
+#OPTIONS=
+
+#
+# By default, the httpd process is started in the C locale; to 
+# change the locale in which the server runs, the HTTPD_LANG
+# variable can be set.
+#
+#HTTPD_LANG=C
