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