You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2010/12/07 13:41:43 UTC

svn commit: r1043011 - /httpd/httpd/trunk/docs/manual/vhosts/ip-based.xml

Author: rbowen
Date: Tue Dec  7 12:41:42 2010
New Revision: 1043011

URL: http://svn.apache.org/viewvc?rev=1043011&view=rev
Log:
Use example domains, rather than real ones.
Replace use of TransferLog with recommended CustomLog directive.

Modified:
    httpd/httpd/trunk/docs/manual/vhosts/ip-based.xml

Modified: httpd/httpd/trunk/docs/manual/vhosts/ip-based.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/vhosts/ip-based.xml?rev=1043011&r1=1043010&r2=1043011&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/vhosts/ip-based.xml (original)
+++ httpd/httpd/trunk/docs/manual/vhosts/ip-based.xml Tue Dec  7 12:41:42 2010
@@ -127,19 +127,19 @@
 
     <example>
     &lt;VirtualHost 172.20.30.40:80&gt;<br />
-    ServerAdmin webmaster@mail.example.com<br />
-    DocumentRoot /groups/example/www<br />
-    ServerName www.example.com<br />
-    ErrorLog /groups/example/logs/error_log<br />
-    TransferLog /groups/example/logs/access_log<br />
+    ServerAdmin webmaster@example1.com<br />
+    DocumentRoot /www/vhosts/example1<br />
+    ServerName www.example1.com<br />
+    ErrorLog /www/logs/example1/error_log<br />
+    CustomLog /www/logs/example1/access_log combined<br />
     &lt;/VirtualHost&gt;<br />
     <br />
     &lt;VirtualHost 172.20.30.50:80&gt;<br />
-    ServerAdmin webmaster@mail.baygroup.org<br />
-    DocumentRoot /groups/baygroup/www<br />
-    ServerName www.baygroup.org<br />
-    ErrorLog /groups/baygroup/logs/error_log<br />
-    TransferLog /groups/baygroup/logs/access_log<br />
+    ServerAdmin webmaster@example2.org<br />
+    DocumentRoot /www/vhosts/example2<br />
+    ServerName www.example2.org<br />
+    ErrorLog /www/logs/example2/error_log<br />
+    CustomLog /www/logs/example2/access_log combined<br />
     &lt;/VirtualHost&gt;
     </example>