fielding 2003/07/09 08:18:01
Modified: docs/conf httpd-std.conf.in
Log:
do not put active IfModule directives around config lines that
are commented out -- that is just a waste of processing.
Revision Changes Path
1.45 +8 -8 httpd-2.0/docs/conf/httpd-std.conf.in
Index: httpd-std.conf.in
===================================================================
RCS file: /home/cvs/httpd-2.0/docs/conf/httpd-std.conf.in,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- httpd-std.conf.in 6 Jul 2003 14:37:30 -0000 1.44
+++ httpd-std.conf.in 9 Jul 2003 15:18:01 -0000 1.45
@@ -52,11 +52,11 @@
#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
-<IfModule !mpm_winnt.c>
-<IfModule !mpm_netware.c>
+#<IfModule !mpm_winnt.c>
+#<IfModule !mpm_netware.c>
#LockFile @rel_logfiledir@/accept.lock
-</IfModule>
-</IfModule>
+#</IfModule>
+#</IfModule>
#
# ScoreBoardFile: File used to store internal server process information.
@@ -66,11 +66,11 @@
# If specified, ensure that no two invocations of Apache share the same
# scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK.
#
-<IfModule !mpm_netware.c>
-<IfModule !perchild.c>
+#<IfModule !mpm_netware.c>
+#<IfModule !perchild.c>
#ScoreBoardFile @rel_logfiledir@/apache_runtime_status
-</IfModule>
-</IfModule>
+#</IfModule>
+#</IfModule>
#
|