Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D8CB39EAE for ; Thu, 5 Apr 2012 08:01:36 +0000 (UTC) Received: (qmail 61209 invoked by uid 500); 5 Apr 2012 08:01:36 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 61030 invoked by uid 500); 5 Apr 2012 08:01:30 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 61003 invoked by uid 99); 5 Apr 2012 08:01:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Apr 2012 08:01:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Apr 2012 08:01:26 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 16EF82388BA6; Thu, 5 Apr 2012 08:01:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1309686 - in /httpd/httpd/branches/2.2.x/docs/manual/vhosts: ip-based.html.en ip-based.xml Date: Thu, 05 Apr 2012 08:01:03 -0000 To: cvs@httpd.apache.org From: humbedooh@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120405080104.16EF82388BA6@eris.apache.org> Author: humbedooh Date: Thu Apr 5 08:01:03 2012 New Revision: 1309686 URL: http://svn.apache.org/viewvc?rev=1309686&view=rev Log: Update examples as per André Malo's suggestion Modified: httpd/httpd/branches/2.2.x/docs/manual/vhosts/ip-based.html.en httpd/httpd/branches/2.2.x/docs/manual/vhosts/ip-based.xml Modified: httpd/httpd/branches/2.2.x/docs/manual/vhosts/ip-based.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/vhosts/ip-based.html.en?rev=1309686&r1=1309685&r2=1309686&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/docs/manual/vhosts/ip-based.html.en (original) +++ httpd/httpd/branches/2.2.x/docs/manual/vhosts/ip-based.html.en Thu Apr 5 08:01:03 2012 @@ -94,7 +94,7 @@ that daemon services. e.g.

- Listen 172.20.30.40:80 + Listen 192.168.0.1:80

It is recommended that you use an IP address instead of a @@ -113,18 +113,18 @@ host. e.g.

- <VirtualHost 172.20.30.40:80>
- ServerAdmin webmaster@mail.smallco.com
+ <VirtualHost 192.168.0.1:80>
+ ServerAdmin webmaster@smallco.example.com
DocumentRoot /groups/smallco/www
- ServerName www.smallco.com
+ ServerName smallco.example.com
ErrorLog /groups/smallco/logs/error_log
TransferLog /groups/smallco/logs/access_log
</VirtualHost>

- <VirtualHost 172.20.30.50:80>
- ServerAdmin webmaster@mail.baygroup.org
+ <VirtualHost 192.168.0.2:80>
+ ServerAdmin webmaster@baygroup.example.org
DocumentRoot /groups/baygroup/www
- ServerName www.baygroup.org
+ ServerName baygroup.example.com
ErrorLog /groups/baygroup/logs/error_log
TransferLog /groups/baygroup/logs/access_log
</VirtualHost> Modified: httpd/httpd/branches/2.2.x/docs/manual/vhosts/ip-based.xml URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/vhosts/ip-based.xml?rev=1309686&r1=1309685&r2=1309686&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/docs/manual/vhosts/ip-based.xml (original) +++ httpd/httpd/branches/2.2.x/docs/manual/vhosts/ip-based.xml Thu Apr 5 08:01:03 2012 @@ -93,7 +93,7 @@ that daemon services. e.g.

- Listen 172.20.30.40:80 + Listen 192.168.0.1:80

It is recommended that you use an IP address instead of a @@ -118,18 +118,18 @@ host. e.g.

- <VirtualHost 172.20.30.40:80>
- ServerAdmin webmaster@mail.smallco.com
+ <VirtualHost 192.168.0.1:80>
+ ServerAdmin webmaster@smallco.example.com
DocumentRoot /groups/smallco/www
- ServerName www.smallco.com
+ ServerName smallco.example.com
ErrorLog /groups/smallco/logs/error_log
TransferLog /groups/smallco/logs/access_log
</VirtualHost>

- <VirtualHost 172.20.30.50:80>
- ServerAdmin webmaster@mail.baygroup.org
+ <VirtualHost 192.168.0.2:80>
+ ServerAdmin webmaster@baygroup.example.org
DocumentRoot /groups/baygroup/www
- ServerName www.baygroup.org
+ ServerName baygroup.example.com
ErrorLog /groups/baygroup/logs/error_log
TransferLog /groups/baygroup/logs/access_log
</VirtualHost>