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 / F233096_index.xml < prev    next >
Extensible Markup Language  |  2003-02-02  |  4KB  |  91 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>
  6. <relativepath href=".."/>
  7. <parentdocument href="../"/>
  8.  
  9.    <title>Apache Virtual Host documentation</title>
  10.  
  11. <summary>
  12.  
  13.     <p>The term <cite>Virtual Host</cite> refers to the practice of
  14.     running more than one web site (such as
  15.     <code>www.company1.com</code> and <code>www.company2.com</code>)
  16.     on a single machine. Virtual hosts can be "<a
  17.     href="ip-based.html">IP-based</a>," meaning that you have a
  18.     different IP address for every web site, or "<a
  19.     href="name-based.html">name-based</a>," meaning that you have
  20.     multiple names running on each IP address. The fact that they
  21.     are running on the same physical server is not apparent to the 
  22.     end user.</p>
  23.  
  24.     <p>Apache was one of the first servers to support IP-based
  25.     virtual hosts right out of the box. Versions 1.1 and later of
  26.     Apache support both IP-based and name-based virtual hosts
  27.     (vhosts). The latter variant of virtual hosts is sometimes also
  28.     called <em>host-based</em> or <em>non-IP virtual hosts</em>.</p>
  29.  
  30.     <p>Below is a list of documentation pages which explain all
  31.     details of virtual host support in Apache version 1.3 and
  32.     later.</p>
  33.  
  34. </summary>
  35.  
  36. <seealso><module>mod_vhost_alias</module></seealso>
  37. <seealso><a href="name-based.html">Name-based virtual
  38. hosts</a></seealso>
  39. <seealso><a href="ip-based.html">IP-based virtual hosts</a></seealso>
  40. <seealso><a href="examples.html">Virtual host examples</a></seealso>
  41. <seealso><a href="fd-limits.html">File descriptor limits</a></seealso>
  42. <seealso><a href="mass.html">Mass virtual hosting</a></seealso>
  43. <seealso><a href="details.html">Details of host matching</a></seealso>
  44.  
  45. <section id="support"><title>Virtual Host Support</title>
  46.  
  47.     <ul>
  48.       <li><a href="name-based.html">Name-based Virtual Hosts</a> (More
  49.       than one web site per IP address)</li>
  50.       <li><a href="ip-based.html">IP-based Virtual Hosts</a> (An IP
  51.       address for each web site)</li>
  52.       <li><a href="examples.html">Virtual Host examples for common
  53.       setups</a></li>
  54.       <li><a href="fd-limits.html">File Descriptor Limits</a> (or,
  55.       <em>Too many log files</em>)</li>
  56.       <li><a href="mass.html">Dynamically Configured Mass Virtual
  57.       Hosting</a></li>
  58.       <li><a href="details.html">In-Depth Discussion of Virtual Host
  59.       Matching</a></li>
  60.     </ul>
  61.  
  62. </section>
  63.  
  64. <section id="directives"><title>Configuration directives</title>
  65.  
  66.     <ul>
  67.       <li><directive type="section"
  68.            module="core">VirtualHost</directive></li>
  69.       <li><directive module="core">NameVirtualHost</directive></li>
  70.       <li><directive module="core">ServerName</directive></li>
  71.       <li><directive module="core">ServerAlias</directive></li>
  72.       <li><directive module="core">ServerPath</directive></li>
  73.     </ul>
  74.  
  75.     <p>If you are trying to debug your virtual host configuration, you
  76.     may find the Apache <code>-S</code> command line switch
  77.     useful. That is, type the following command:</p>
  78.  
  79.     <example>
  80.     /usr/local/apache2/bin/httpd -S
  81.     </example>
  82.  
  83.     <p>This command will dump out a description of how Apache parsed
  84.     the configuration file. Careful examination of the IP addresses and
  85.     server names may help uncover configuration mistakes. (See <a
  86.     href="../programs/httpd.html">the docs for the httpd program</a> for
  87.     other command line options)</p>
  88.  
  89. </section>
  90. </manualpage>
  91.