home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F278677_namebased.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  13KB  |  269 lines

  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4. <!-- $Revision: 1.5.2.9 $ -->
  5.  
  6. <!--
  7.  Copyright 2002-2004 The Apache Software Foundation
  8.  
  9.  Licensed under the Apache License, Version 2.0 (the "License");
  10.  you may not use this file except in compliance with the License.
  11.  You may obtain a copy of the License at
  12.  
  13.      http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15.  Unless required by applicable law or agreed to in writing, software
  16.  distributed under the License is distributed on an "AS IS" BASIS,
  17.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18.  See the License for the specific language governing permissions and
  19.  limitations under the License.
  20. -->
  21.  
  22. <manualpage metafile="name-based.xml.meta">
  23. <parentdocument href="./">Virtual Hosts</parentdocument>
  24. <title>Name-based Virtual Host Support</title>
  25.  
  26. <summary>
  27.     <p>This document describes when and how to use name-based virtual hosts.</p>
  28. </summary>
  29.  
  30. <seealso><a href="ip-based.html">IP-based Virtual Host Support</a></seealso>
  31. <seealso><a href="details.html">An In-Depth Discussion of Virtual Host Matching</a></seealso>
  32. <seealso><a href="mass.html">Dynamically configured mass virtual hosting</a></seealso>
  33. <seealso><a href="examples.html">Virtual Host examples for common setups</a></seealso>
  34. <seealso><a href="examples.html#serverpath">ServerPath configuration example</a></seealso>
  35.  
  36. <section id="namevip"><title>Name-based vs. IP-based Virtual Hosts</title>
  37.  
  38.     <p>IP-based virtual hosts use the IP address of the connection to
  39.     determine the correct virtual host to serve.  Therefore you need to
  40.     have a separate IP address for each host.  With name-based virtual
  41.     hosting, the server relies on the client to report the hostname as
  42.     part of the HTTP headers.  Using this technique, many different hosts
  43.     can share the same IP address.</p>
  44.  
  45.     <p>Name-based virtual hosting is usually simpler, since you need
  46.     only configure your DNS server to map each hostname to the correct
  47.     IP address and then configure the Apache HTTP Server to recognize
  48.     the different hostnames.  Name-based virtual hosting also eases
  49.     the demand for scarce IP addresses.  Therefore you should use
  50.     name-based virtual hosting unless there is a specific reason to
  51.     choose IP-based virtual hosting.  Some reasons why you might consider
  52.     using IP-based virtual hosting:</p>
  53.  
  54.     <ul>
  55.         <li>Some ancient clients are not compatible with name-based virtual
  56.         hosting.  For name-based virtual hosting to work, the client must send
  57.         the HTTP Host header.  This is required by HTTP/1.1, and is
  58.         implemented by all modern HTTP/1.0 browsers as an extension.  If you
  59.         need to support obsolete clients and still use name-based virtual
  60.         hosting, a possible technique is discussed at the end of this
  61.         document.</li>
  62.  
  63.         <li>Name-based virtual hosting cannot be used with SSL secure servers
  64.         because of the nature of the SSL protocol.</li>
  65.  
  66.         <li>Some operating systems and network equipment implement bandwidth
  67.         management techniques that cannot differentiate between hosts unless
  68.         they are on separate IP addresses.</li>
  69.     </ul>
  70.  
  71. </section>
  72.  
  73. <section id="using"><title>Using Name-based Virtual Hosts</title>
  74.  
  75. <related>
  76.     <modulelist>
  77.     <module>core</module>
  78.     </modulelist>
  79.  
  80.     <directivelist>
  81.     <directive module="core">DocumentRoot</directive>
  82.     <directive module="core">NameVirtualHost</directive>
  83.     <directive module="core">ServerAlias</directive>
  84.     <directive module="core">ServerName</directive>
  85.     <directive module="core">ServerPath</directive>
  86.     <directive module="core" type="section">VirtualHost</directive>
  87.     </directivelist>
  88. </related>
  89.  
  90.     <p>To use name-based virtual hosting, you must designate the IP
  91.     address (and possibly port) on the server that will be accepting
  92.     requests for the hosts.  This is configured using the <directive
  93.     module="core">NameVirtualHost</directive> directive.
  94.     In the normal case where any and all IP addresses on the server should
  95.     be used, you can use <code>*</code> as the argument to <directive
  96.     module="core">NameVirtualHost</directive>. If you're planning to use
  97.     multiple ports (e.g. running SSL) you should add a Port to the argument,
  98.     such as <code>*:80</code>. Note that mentioning an IP address in a
  99.     <directive module="core">NameVirtualHost</directive> directive does not
  100.     automatically make the server listen to that IP address. See
  101.     <a href="../bind.html">Setting which addresses and ports Apache uses</a>
  102.     for more details. In addition, any IP address specified here must be
  103.     associated with a network interface    on the server.</p>
  104.  
  105.     <p>The next step is to create a <directive type="section"
  106.     module="core">VirtualHost</directive> block for
  107.     each different host that you would like to serve. The argument to the
  108.     <directive type="section" module="core">VirtualHost</directive> directive
  109.     should be the same as the argument to the <directive
  110.     module="core">NameVirtualHost</directive> directive (ie, an IP address,
  111.     or <code>*</code> for all addresses).  Inside each <directive type="section"    
  112.     module="core">VirtualHost</directive> block, you will need at minimum a
  113.     <directive module="core">ServerName</directive> directive to designate
  114.     which host is served and a <directive module="core">DocumentRoot</directive>
  115.     directive to show where in the filesystem the content for that host
  116.     lives.</p>
  117.  
  118.     <note><title>Main host goes away</title>
  119.         <p>If you are adding virtual hosts to an existing web server, you
  120.         must also create a <directive type="section" module="core"
  121.         >VirtualHost</directive> block for the existing host. The <directive
  122.         module="core">ServerName</directive> and <directive module="core"
  123.         >DocumentRoot</directive> included in this virtual host should be the
  124.         same as the global <directive module="core">ServerName</directive> and
  125.         <directive module="core">DocumentRoot</directive>. List this virtual
  126.         host first in the configuration file so that it will act as the default
  127.         host.</p>
  128.     </note>
  129.  
  130.     <p>For example, suppose that you are serving the domain
  131.     <code>www.domain.tld</code> and you wish to add the virtual host
  132.     <code>www.otherdomain.tld</code>, which points at the same IP address.
  133.     Then you simply add the following to <code>httpd.conf</code>:</p>
  134.  
  135.     <example>
  136.         NameVirtualHost *:80<br />
  137.         <br />
  138.         <VirtualHost *:80><br />
  139.         <indent>
  140.             ServerName www.domain.tld<br />
  141.             ServerAlias domain.tld *.domain.tld<br />
  142.             DocumentRoot /www/domain<br />
  143.         </indent>
  144.         </VirtualHost><br />
  145.         <br />
  146.         <VirtualHost *:80><br />
  147.         <indent>ServerName www.otherdomain.tld<br />
  148.             DocumentRoot /www/otherdomain<br />
  149.         </indent>
  150.         </VirtualHost><br />
  151.     </example>
  152.  
  153.     <p>You can alternatively specify an explicit IP address in place of the
  154.     <code>*</code> in both the <directive module="core"
  155.     >NameVirtualHost</directive> and <directive type="section" module="core"
  156.     >VirtualHost</directive> directives. For example, you might want to do this
  157.     in order to run some name-based virtual hosts on one IP address, and either
  158.     IP-based, or another set of name-based virtual hosts on another address.</p>
  159.  
  160.     <p>Many servers want to be accessible by more than one name. This is
  161.     possible with the <directive module="core">ServerAlias</directive>
  162.     directive, placed inside the <directive type="section" module="core"
  163.     >VirtualHost</directive> section. For example in the first <directive
  164.     type="section" module="core">VirtualHost</directive> block above, the
  165.     <directive module="core">ServerAlias</directive> directive indicates that
  166.     the listed names are other names which people can use to see that same
  167.     web site:</p>
  168.  
  169.     <example>
  170.         ServerAlias domain.tld *.domain.tld
  171.     </example>
  172.  
  173.     <p>then requests for all hosts in the <code>domain.tld</code> domain will
  174.     be served by the <code>www.domain.tld</code> virtual host. The wildcard
  175.     characters <code>*</code> and <code>?</code> can be used to match names.
  176.     Of course, you can't just make up names and place them in <directive
  177.     module="core">ServerName</directive> or <code>ServerAlias</code>. You must
  178.     first have your DNS server properly configured to map those names to an IP
  179.     address associated with your server.</p>
  180.  
  181.     <p>Finally, you can fine-tune the configuration of the virtual hosts
  182.     by placing other directives inside the <directive type="section"
  183.     module="core">VirtualHost</directive> containers. Most directives can be
  184.     placed in these containers and will then change the configuration only of
  185.     the relevant virtual host. To find out if a particular directive is allowed,
  186.     check the <a href="../mod/directive-dict.html#Context">Context</a> of the
  187.     directive. Configuration directives set in the <em>main server context</em>
  188.     (outside any <directive type="section" module="core">VirtualHost</directive>
  189.     container) will be used only if they are not overridden by the virtual host
  190.     settings.</p>
  191.  
  192.     <p>Now when a request arrives, the server will first check if it is using
  193.     an IP address that matches the <directive module="core"
  194.     >NameVirtualHost</directive>. If it is, then it will look at each <directive
  195.     type="section" module="core">VirtualHost</directive> section with a matching
  196.     IP address and try to find one where the <directive module="core"
  197.     >ServerName</directive> or <code>ServerAlias</code> matches the requested
  198.     hostname. If it finds one, then it uses the configuration for that server.
  199.     If no matching virtual host  is found, then <strong>the first listed virtual
  200.     host</strong> that matches the IP address will be used.</p>
  201.  
  202.     <p>As a consequence, the first listed virtual host is the <em>default</em>
  203.     virtual host.  The <directive module="core">DocumentRoot</directive> from
  204.     the <em>main server</em> will <strong>never</strong> be used when an IP
  205.     address matches the <directive module="core">NameVirtualHost</directive> 
  206.     directive. If you would like to have a special configuration for requests 
  207.     that do not    match any particular virtual host, simply put that configuration
  208.     in a <directive type="section" module="core">VirtualHost</directive>
  209.     container and list it first in the configuration file.</p>
  210.  
  211. </section>
  212.  
  213. <section id="compat"><title>Compatibility with Older Browsers</title>
  214.  
  215.     <p>As mentioned earlier, there are some clients
  216.     who do not send the required data for the name-based virtual
  217.     hosts to work properly. These clients will always be sent the
  218.     pages from the first virtual host listed for that IP address
  219.     (the <cite>primary</cite> name-based virtual host).</p>
  220.  
  221.     <note><title>How much older?</title>
  222.     <p>Please note that when we say older, we really do mean older. You are
  223.     very unlikely to encounter one of these browsers in use today. All
  224.     current versions of any browser send the <code>Host</code> header as
  225.     required for name-based virtual hosts.</p>
  226.     </note>
  227.  
  228.     <p>There is a possible workaround with the <directive
  229.     module="core">ServerPath</directive>
  230.     directive, albeit a slightly cumbersome one:</p>
  231.  
  232.     <p>Example configuration:</p>
  233.  
  234.     <example>
  235.         NameVirtualHost 111.22.33.44<br />
  236.         <br />
  237.         <VirtualHost 111.22.33.44><br />
  238.         <indent>
  239.             ServerName www.domain.tld<br />
  240.             ServerPath /domain<br />
  241.             DocumentRoot /web/domain<br />
  242.         </indent>
  243.         </VirtualHost><br />
  244.     </example>
  245.  
  246.     <p>What does this mean? It means that a request for any URI
  247.     beginning with "<code>/domain</code>" will be served from the
  248.     virtual host <code>www.domain.tld</code>. This means that the
  249.     pages can be accessed as <code>http://www.domain.tld/domain/</code> 
  250.     for all clients, although clients sending a <code>Host:</code> header 
  251.     can also access it as <code>http://www.domain.tld/</code>.</p>
  252.  
  253.     <p>In order to make this work, put a link on your primary
  254.     virtual host's page to
  255.     <code>http://www.domain.tld/domain/</code>. Then, in the virtual
  256.     host's pages, be sure to use either purely relative links
  257.     (<em>e.g.</em>, "<code>file.html</code>" or
  258.     "<code>../icons/image.gif</code>") or links containing the
  259.     prefacing <code>/domain/</code> (<em>e.g.</em>,
  260.     "<code>http://www.domain.tld/domain/misc/file.html</code>" or
  261.     "<code>/domain/misc/file.html</code>").</p>
  262.  
  263.     <p>This requires a bit of discipline, but adherence to these
  264.     guidelines will, for the most part, ensure that your pages will
  265.     work with all browsers, new and old.</p>
  266.  
  267. </section>
  268. </manualpage>
  269.