summaryrefslogtreecommitdiffstats
path: root/docs/manual
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2010-12-07 13:41:42 +0100
committerRich Bowen <rbowen@apache.org>2010-12-07 13:41:42 +0100
commitd609f2b6d1d7e13c15e4dabb41bf71e246bf384a (patch)
tree353ad5cb561c97f1d0f7154618ab81208b3f2612 /docs/manual
parentUse the developer docs on ASF hardware, instead of rcbowen.com (diff)
downloadapache2-d609f2b6d1d7e13c15e4dabb41bf71e246bf384a.tar.xz
apache2-d609f2b6d1d7e13c15e4dabb41bf71e246bf384a.zip
Use example domains, rather than real ones.
Replace use of TransferLog with recommended CustomLog directive. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1043011 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rw-r--r--docs/manual/vhosts/ip-based.xml20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/manual/vhosts/ip-based.xml b/docs/manual/vhosts/ip-based.xml
index db6ba5fa5c..2efd92a096 100644
--- a/docs/manual/vhosts/ip-based.xml
+++ b/docs/manual/vhosts/ip-based.xml
@@ -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>