You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2005/03/30 19:47:02 UTC

svn commit: r159499 - httpd/httpd/trunk/docs/conf/httpd-std.conf.in

Author: striker
Date: Wed Mar 30 09:47:02 2005
New Revision: 159499

URL: http://svn.apache.org/viewcvs?view=rev&rev=159499
Log:
* docs/conf/httpd-std.conf.in

  Adjust one conditional to new style.
  Wrap mod_logio directives into a conditional, instead of having them commented out.


Modified:
    httpd/httpd/trunk/docs/conf/httpd-std.conf.in

Modified: httpd/httpd/trunk/docs/conf/httpd-std.conf.in
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/conf/httpd-std.conf.in?view=diff&r1=159498&r2=159499
==============================================================================
--- httpd/httpd/trunk/docs/conf/httpd-std.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/httpd-std.conf.in Wed Mar 30 09:47:02 2005
@@ -500,8 +500,10 @@
     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 @@
     #</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).