diff options
author | Jeff Trawick <trawick@apache.org> | 2010-12-07 17:53:01 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2010-12-07 17:53:01 +0100 |
commit | 2ce0fcf630e631655870cf3a2efce2ebe3fadb94 (patch) | |
tree | 01ad1ce58611d8f965a9497da2109652c99e4cac /docs/manual/vhosts/mass.xml | |
parent | Improve "method not allowed" spanish translation - from Alejandro Lay - (diff) | |
download | apache2-2ce0fcf630e631655870cf3a2efce2ebe3fadb94.tar.xz apache2-2ce0fcf630e631655870cf3a2efce2ebe3fadb94.zip |
follow up r1042758 and r1043011 with more fixes to use
proper example domains
(and show some respect in our mangled version of prep.ai.mit.edu
by using .edu instead of .com)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1043126 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/vhosts/mass.xml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/docs/manual/vhosts/mass.xml b/docs/manual/vhosts/mass.xml index d86071a127..4755130667 100644 --- a/docs/manual/vhosts/mass.xml +++ b/docs/manual/vhosts/mass.xml @@ -45,21 +45,21 @@ <pre> NameVirtualHost 111.22.33.44 <VirtualHost 111.22.33.44> - ServerName www.customer-1.com - DocumentRoot /www/hosts/www.customer-1.com/docs - ScriptAlias /cgi-bin/ /www/hosts/www.customer-1.com/cgi-bin + ServerName customer-1.example.com + DocumentRoot /www/hosts/customer-1.example.com/docs + ScriptAlias /cgi-bin/ /www/hosts/customer-1.example.com/cgi-bin </VirtualHost> <VirtualHost 111.22.33.44> - ServerName www.customer-2.com - DocumentRoot /www/hosts/www.customer-2.com/docs - ScriptAlias /cgi-bin/ /www/hosts/www.customer-2.com/cgi-bin + ServerName customer-2.example.com + DocumentRoot /www/hosts/customer-2.example.com/docs + ScriptAlias /cgi-bin/ /www/hosts/customer-2.example.com/cgi-bin </VirtualHost> <VirtualHost 111.22.33.44> - ServerName www.customer-N.com - DocumentRoot /www/hosts/www.customer-N.com/docs - ScriptAlias /cgi-bin/ /www/hosts/www.customer-N.com/cgi-bin + ServerName customer-N.example.com + DocumentRoot /www/hosts/customer-N.example.com/docs + ScriptAlias /cgi-bin/ /www/hosts/customer-N.example.com/cgi-bin </VirtualHost> </pre> </example> @@ -183,7 +183,7 @@ examples.</p> ISP's web hosting server. Using <code>%2</code>, we can select substrings of the server name to use in the filename so that, for example, the documents for - <code>www.user.isp.com</code> are found in + <code>www.user.example.com</code> are found in <code>/home/user/www</code>. It uses a single <code>cgi-bin</code> directory instead of one per virtual host.</p> @@ -239,7 +239,7 @@ LogFormat "%V %h %l %u %t \"%r\" %s %b" vcommon<br /> <br /> <VirtualHost 111.22.33.44><br /> <indent> - ServerName www.commercial.isp.com<br /> + ServerName www.commercial.example.com<br /> <br /> CustomLog logs/access_log.commercial vcommon<br /> <br /> @@ -250,7 +250,7 @@ LogFormat "%V %h %l %u %t \"%r\" %s %b" vcommon<br /> <br /> <VirtualHost 111.22.33.45><br /> <indent> - ServerName www.homepages.isp.com<br /> + ServerName www.homepages.example.com<br /> <br /> CustomLog logs/access_log.homepages vcommon<br /> <br /> |