home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F278664_index.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  4KB  |  108 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. <!-- $Revision: 1.3.2.10 $ -->
  5.  
  6. <!--
  7.  Copyright 2002-2004 The Apache Software Foundation
  8.  
  9.  Licensed under the Apache License, Version 2.0 (the "License");
  10.  you may not use this file except in compliance with the License.
  11.  You may obtain a copy of the License at
  12.  
  13.      http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15.  Unless required by applicable law or agreed to in writing, software
  16.  distributed under the License is distributed on an "AS IS" BASIS,
  17.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18.  See the License for the specific language governing permissions and
  19.  limitations under the License.
  20. -->
  21.  
  22. <manualpage metafile="index.xml.meta">
  23. <parentdocument href="../"/>
  24.  
  25.    <title>Apache Virtual Host documentation</title>
  26.  
  27. <summary>
  28.  
  29.     <p>The term <cite>Virtual Host</cite> refers to the practice of
  30.     running more than one web site (such as
  31.     <code>www.company1.com</code> and <code>www.company2.com</code>)
  32.     on a single machine. Virtual hosts can be "<a
  33.     href="ip-based.html">IP-based</a>", meaning that you have a
  34.     different IP address for every web site, or "<a
  35.     href="name-based.html">name-based</a>", meaning that you have
  36.     multiple names running on each IP address. The fact that they
  37.     are running on the same physical server is not apparent to the
  38.     end user.</p>
  39.  
  40.     <p>Apache was one of the first servers to support IP-based
  41.     virtual hosts right out of the box. Versions 1.1 and later of
  42.     Apache support both IP-based and name-based virtual hosts
  43.     (vhosts). The latter variant of virtual hosts is sometimes also
  44.     called <em>host-based</em> or <em>non-IP virtual hosts</em>.</p>
  45.  
  46.     <p>Below is a list of documentation pages which explain all
  47.     details of virtual host support in Apache version 1.3 and
  48.     later.</p>
  49.  
  50. </summary>
  51.  
  52. <seealso><module>mod_vhost_alias</module></seealso>
  53. <seealso><a href="name-based.html">Name-based virtual
  54. hosts</a></seealso>
  55. <seealso><a href="ip-based.html">IP-based virtual hosts</a></seealso>
  56. <seealso><a href="examples.html">Virtual host examples</a></seealso>
  57. <seealso><a href="fd-limits.html">File descriptor limits</a></seealso>
  58. <seealso><a href="mass.html">Mass virtual hosting</a></seealso>
  59. <seealso><a href="details.html">Details of host matching</a></seealso>
  60.  
  61. <section id="support"><title>Virtual Host Support</title>
  62.  
  63.     <ul>
  64.       <li><a href="name-based.html">Name-based Virtual Hosts</a> (More
  65.       than one web site per IP address)</li>
  66.       <li><a href="ip-based.html">IP-based Virtual Hosts</a> (An IP
  67.       address for each web site)</li>
  68.       <li><a href="examples.html">Virtual Host examples for common
  69.       setups</a></li>
  70.       <li><a href="fd-limits.html">File Descriptor Limits</a> (or,
  71.       <em>Too many log files</em>)</li>
  72.       <li><a href="mass.html">Dynamically Configured Mass Virtual
  73.       Hosting</a></li>
  74.       <li><a href="details.html">In-Depth Discussion of Virtual Host
  75.       Matching</a></li>
  76.     </ul>
  77.  
  78. </section>
  79.  
  80. <section id="directives"><title>Configuration directives</title>
  81.  
  82.     <ul>
  83.       <li><directive type="section"
  84.            module="core">VirtualHost</directive></li>
  85.       <li><directive module="core">NameVirtualHost</directive></li>
  86.       <li><directive module="core">ServerName</directive></li>
  87.       <li><directive module="core">ServerAlias</directive></li>
  88.       <li><directive module="core">ServerPath</directive></li>
  89.     </ul>
  90.  
  91.     <p>If you are trying to debug your virtual host configuration, you
  92.     may find the Apache <code>-S</code> command line switch
  93.     useful. That is, type the following command:</p>
  94.  
  95.     <example>
  96.     /usr/local/apache2/bin/httpd -S
  97.     </example>
  98.  
  99.     <p>This command will dump out a description of how Apache parsed
  100.     the configuration file. Careful examination of the IP addresses and
  101.     server names may help uncover configuration mistakes. (See <a
  102.     href="../programs/httpd.html">the docs for the httpd program</a> for
  103.     other command line options)</p>
  104.  
  105. </section>
  106. </manualpage>
  107.  
  108.