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