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