home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 November / PCWorld_2003-11_cd.bin / Komunik / apache / apache_2.0.47-win32-x86-no_ssl.msi / Data.Cab / F251430_namebased.html.en < prev    next >
Extensible Markup Language  |  2003-06-03  |  17KB  |  249 lines

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