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