diff -Naur apache_1.3.6-orig/ABOUT_APACHE apache_1.3.6/ABOUT_APACHE
--- apache_1.3.6-orig/ABOUT_APACHE Sat Feb 13 18:30:47 1999
+++ apache_1.3.6/ABOUT_APACHE Wed Oct 20 16:39:42 1999
@@ -104,7 +104,8 @@
Other major contributors
- Howard Fear (mod_include), Florent Guillaume (language negotiation),
+ Mike Abbott (performance), Howard Fear (mod_include),
+ Florent Guillaume (language negotiation),
Koen Holtman (rewrite of mod_negotiation),
Kevin Hughes (creator of all those nifty icons),
Rasmus Lerdorf (mod_info, mod_php, mod_php3),
diff -Naur apache_1.3.6-orig/conf/httpd.conf-dist apache_1.3.6/conf/httpd.conf-dist
--- apache_1.3.6-orig/conf/httpd.conf-dist Wed Mar 10 01:14:27 1999
+++ apache_1.3.6/conf/httpd.conf-dist Wed Oct 20 16:39:51 1999
@@ -160,7 +160,7 @@
# isn't really needed, but a few (such as Solaris) do have notable leaks
# in the libraries.
#
-MaxRequestsPerChild 30
+MaxRequestsPerChild 0
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
@@ -179,6 +179,14 @@
#BindAddress *
#
+# SingleListen: Require that each child process listen to a single IP
+# address and port, from the list specified using Listen options.
+# Listen addresses are distributed evenly across child processes. This
+# avoids the whole serialized accept problem.
+#
+SingleListen off
+
+#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
@@ -201,6 +209,16 @@
# Off) when the "server-status" handler is called. The default is Off.
#
#ExtendedStatus On
+
+#
+# QSC: Enable the Quick Shortcut Cache. The QSC caches response
+# headers and data together for very fast response to requests for
+# static content. It is tightly integrated with and requires the
+# mmap_static module.
+#
+