]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* docs/conf/httpd-std.conf.in
authorSander Striker <striker@apache.org>
Wed, 30 Mar 2005 17:47:02 +0000 (17:47 +0000)
committerSander Striker <striker@apache.org>
Wed, 30 Mar 2005 17:47:02 +0000 (17:47 +0000)
  Adjust one conditional to new style.
  Wrap mod_logio directives into a conditional, instead of having them commented out.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@159499 13f79535-47bb-0310-9956-ffa450edef68

docs/conf/httpd-std.conf.in

index 39c7c08f9f0a4c9f68099aecde6754ee84bddb65..550fcf6a0ebcbe5a54e283f1a15c427ea9775727 100644 (file)
@@ -500,8 +500,10 @@ LogLevel warn
     LogFormat "%{Referer}i -> %U" referer
     LogFormat "%{User-agent}i" agent
 
-    # You need to enable mod_logio.c to use %I and %O
-    #LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
+    <IfModule logio_module>
+      # You need to enable mod_logio.c to use %I and %O
+      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
+    </IfModule>
 
     #
     # The location and format of the access logfile (Common Logfile Format).
@@ -1017,7 +1019,7 @@ ServerSignature On
     #</Location>
 </IfModule>
 
-<IfModule mod_info.c>
+<IfModule info_module>
     #
     # Allow remote server configuration reports, with the URL of
     #  http://servername/server-info (requires that mod_info.c be loaded).