]> granicus.if.org Git - apache/commitdiff
formatting only
authorAndré Malo <nd@apache.org>
Fri, 10 Oct 2003 22:48:53 +0000 (22:48 +0000)
committerAndré Malo <nd@apache.org>
Fri, 10 Oct 2003 22:48:53 +0000 (22:48 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101406 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/vhosts/name-based.html.en
docs/manual/vhosts/name-based.xml

index 45846e6970950c8b01bf66c2dea7e61dbcf31395..102e25582649fa0425b331655dee6d0d90ce35f6 100644 (file)
@@ -24,9 +24,7 @@
 <a href="../ko/vhosts/name-based.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
 
-
-       <p>This document describes when and how to use name-based virtual hosts.</p>
-
+    <p>This document describes when and how to use name-based virtual hosts.</p>
 </div>
 <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>
 <li><img alt="" src="../images/down.gif" /> <a href="#using">Using Name-based Virtual Hosts</a></li>
 <div class="section">
 <h2><a name="namevip" id="namevip">Name-based vs. IP-based Virtual Hosts</a></h2>
 
-       <p>IP-based virtual hosts use the IP address of the connection to
-       determine the correct virtual host to serve.  Therefore you need to
-       have a separate IP address for each host.  With name-based virtual
-       hosting, the server relies on the client to report the hostname as
-       part of the HTTP headers.  Using this technique, many different hosts
-       can share the same IP address.</p>
-
-       <p>Name-based virtual hosting is usually simpler, since you need
-       only configure your DNS server to map each hostname to the correct
-       IP address and then configure the Apache HTTP Server to recognize
-       the different hostnames.  Name-based virtual hosting also eases
-       the demand for scarce IP addresses.  Therefore you should use
-       name-based virtual hosting unless there is a specific reason to
-       choose IP-based virtual hosting.  Some reasons why you might consider
-       using IP-based virtual hosting:</p>
-
-       <ul>
-               <li>Some ancient clients are not compatible with name-based virtual
-               hosting.  For name-based virtual hosting to work, the client must send
-               the HTTP Host header.  This is required by HTTP/1.1, and is
-               implemented by all modern HTTP/1.0 browsers as an extension.  If you
-               need to support obsolete clients and still use name-based virtual
-               hosting, a possible technique is discussed at the end of this
-               document.</li>
-
-               <li>Name-based virtual hosting cannot be used with SSL secure servers
-               because of the nature of the SSL protocol.</li>
-
-               <li>Some operating systems and network equipment implement bandwidth
-               management techniques that cannot differentiate between hosts unless
-               they are on separate IP addresses.</li>
-       </ul>
+    <p>IP-based virtual hosts use the IP address of the connection to
+    determine the correct virtual host to serve.  Therefore you need to
+    have a separate IP address for each host.  With name-based virtual
+    hosting, the server relies on the client to report the hostname as
+    part of the HTTP headers.  Using this technique, many different hosts
+    can share the same IP address.</p>
+
+    <p>Name-based virtual hosting is usually simpler, since you need
+    only configure your DNS server to map each hostname to the correct
+    IP address and then configure the Apache HTTP Server to recognize
+    the different hostnames.  Name-based virtual hosting also eases
+    the demand for scarce IP addresses.  Therefore you should use
+    name-based virtual hosting unless there is a specific reason to
+    choose IP-based virtual hosting.  Some reasons why you might consider
+    using IP-based virtual hosting:</p>
+
+    <ul>
+        <li>Some ancient clients are not compatible with name-based virtual
+        hosting.  For name-based virtual hosting to work, the client must send
+        the HTTP Host header.  This is required by HTTP/1.1, and is
+        implemented by all modern HTTP/1.0 browsers as an extension.  If you
+        need to support obsolete clients and still use name-based virtual
+        hosting, a possible technique is discussed at the end of this
+        document.</li>
+
+        <li>Name-based virtual hosting cannot be used with SSL secure servers
+        because of the nature of the SSL protocol.</li>
+
+        <li>Some operating systems and network equipment implement bandwidth
+        management techniques that cannot differentiate between hosts unless
+        they are on separate IP addresses.</li>
+    </ul>
 
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 
 <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">&lt;VirtualHost&gt;</a></code></li></ul></td></tr></table>
 
-       <p>To use name-based virtual hosting, you must designate the IP
-       address (and possibly port) on the server that will be accepting
-       requests for the hosts.  This is configured using the <code class="directive"><a href="../mod/core.html#namevirtualhost">NameVirtualHost</a></code> directive.
-       In the normal case where any and all IP addresses on the server should
-       be used, you can use <code>*</code> as the argument to
-  <code class="directive"><a href="../mod/core.html#namevirtualhost">NameVirtualHost</a></code>.  Note that mentioning an
-  IP address in a      <code class="directive"><a href="../mod/core.html#namevirtualhost">NameVirtualHost</a></code> directive
-  does not automatically make the      server listen to that IP address.  See 
-  <a href="../bind.html">Setting which addresses and ports Apache uses</a> 
-  for more details.  In addition,      any IP address specified here must be 
-  associated with a network interface
-       on the server.</p>
-
-       <p>The next step is to create a <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> block for
-       each different host that you would like to serve.  The argument to the
-  <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> directive 
-  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, 
-  or <code>*</code> for all addresses).  Inside each <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> block, you will need at minimum a
-       <code class="directive"><a href="../mod/core.html#servername">ServerName</a></code> directive to
-       designate which host is served and a <code class="directive"><a href="../mod/core.html#documentroot">DocumentRoot</a></code> directive to
-       show where in the filesystem the content for that host lives.</p>
+    <p>To use name-based virtual hosting, you must designate the IP
+    address (and possibly port) on the server that will be accepting
+    requests for the hosts.  This is configured using the <code class="directive"><a href="../mod/core.html#namevirtualhost">NameVirtualHost</a></code> directive.
+    In the normal case where any and all IP addresses on the server should
+    be used, you can use <code>*</code> as the argument to <code class="directive"><a href="../mod/core.html#namevirtualhost">NameVirtualHost</a></code>. Note that mentioning an
+    IP address in a <code class="directive"><a href="../mod/core.html#namevirtualhost">NameVirtualHost</a></code>
+    directive does not automatically make the server listen to that IP address.
+    See <a href="../bind.html">Setting which addresses and ports Apache uses</a> 
+    for more details. In addition, any IP address specified here must be
+    associated with a network interface        on the server.</p>
+
+    <p>The next step is to create a <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> block for
+    each different host that you would like to serve. The argument to the
+    <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> directive
+    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,
+    or <code>*</code> for all addresses).  Inside each <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> block, you will need at minimum a
+    <code class="directive"><a href="../mod/core.html#servername">ServerName</a></code> directive to designate
+    which host is served and a <code class="directive"><a href="../mod/core.html#documentroot">DocumentRoot</a></code>
+    directive to show where in the filesystem the content for that host
+    lives.</p>
 
     <div class="note"><h3>Main host goes away</h3>
-       If you are adding virtual hosts to an existing web server, you
-       must also create a <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</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 same as the global        <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>.  List this     virtual host first in 
-  the configuration file so that it will act as        the default host.
+        <p>If you are adding virtual hosts to an existing web server, you
+        must also create a <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</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
+        same as the global <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>. List this virtual
+        host first in the configuration file so that it will act as the default
+        host.</p>
     </div>
 
-       <p>For example, suppose that you are serving the domain
-       <code>www.domain.tld</code> and you wish to add the virtual host
-       <code>www.otherdomain.tld</code>, which points at the same IP address.
-       Then you simply add the following to <code>httpd.conf</code>:</p>
-
-       <div class="example"><p><code>
-    NameVirtualHost *<br />
-    <br />
-    &lt;VirtualHost *&gt;<br />
-    <span class="indent">
-    ServerName www.domain.tld<br />
-    ServerAlias domain.tld *.domain.tld<br />
-    DocumentRoot /www/domain<br />
-    </span>
-    &lt;/VirtualHost&gt;<br />
-    <br />
-    &lt;VirtualHost *&gt;<br />
-    <span class="indent">ServerName www.otherdomain.tld<br />
-    DocumentRoot /www/otherdomain<br />
-    </span>
-    &lt;/VirtualHost&gt;<br />
-       </code></p></div>
-
-       <p>You can alternatively specify an explicit IP address in place of
-  the <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">&lt;VirtualHost&gt;</a></code> directives. 
-  For example, you might want to do this in order to run some name-based virtual 
-  hosts on one IP address, and either IP-based, or another set of name-based
-  virtual hosts on another address.</p>
-
-       <p>Many servers want to be accessible by more than one name.  This is
-       possible with the <code class="directive"><a href="../mod/core.html#serveralias">ServerAlias</a></code>
-       directive, placed inside the <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> section. For
-  example in the first <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> block above, the <code class="directive"><a href="../mod/core.html#serveralias">ServerAlias</a></code> directive indicates that the
-  listed names are other names which people can use to see that same
-  web site:</p>
-
-       <div class="example"><p><code>
-    ServerAlias domain.tld *.domain.tld
-       </code></p></div>
-
-       <p>then requests for all hosts in the <code>domain.tld</code> domain
-       will be served by the <code>www.domain.tld</code> virtual host.  The
-  wildcard characters <code>*</code> and <code>?</code> can be used to match 
-  names.  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 first have your DNS server  properly configured to map those names 
-  to an IP address associated  with your server.</p>
-
-       <p>Finally, you can fine-tune the configuration of the virtual hosts
-       by placing other directives inside the
-  <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> containers.  
-  Most directives can be placed in these containers and will then change the 
-  configuration only of the relevant virtual host.  To find out if a particular 
-  directive    is allowed, check the <a href="../mod/directive-dict.html#Context">Context</a> of the
-       directive.  Configuration directives set in the <em>main server
-  context</em> (outside any <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> container) will be used only if they 
-  are not overridden by the virtual host settings.</p>
-
-       <p>Now when a request arrives, the server will first check if it is
-  using 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">&lt;VirtualHost&gt;</a></code>   
-  section with a matching 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 hostname.  If it finds one, 
-  then it uses the configuration for that server. If no matching virtual host 
-  is found, then       <strong>the first listed virtual host</strong> that matches 
-  the IP address will be used.</p>
-
-       <p>As a consequence, the first listed virtual host is the
-  <em>default</em> virtual host.  The <code class="directive"><a href="../mod/core.html#documentroot">DocumentRoot</a></code> from the
-       <em>main server</em> will <strong>never</strong> be used when an IP
-  address matches the <code class="directive"><a href="../mod/core.html#namevirtualhost">NameVirtualHost</a></code> 
-  directive.  If you would like to have a special configuration for requests 
-  that do not  match any particular virtual host, simply put that configuration 
-  in a <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> 
-  container and list it first in the configuration file.</p>
+    <p>For example, suppose that you are serving the domain
+    <code>www.domain.tld</code> and you wish to add the virtual host
+    <code>www.otherdomain.tld</code>, which points at the same IP address.
+    Then you simply add the following to <code>httpd.conf</code>:</p>
+
+    <div class="example"><p><code>
+        NameVirtualHost *<br />
+        <br />
+        &lt;VirtualHost *&gt;<br />
+        <span class="indent">
+            ServerName www.domain.tld<br />
+            ServerAlias domain.tld *.domain.tld<br />
+            DocumentRoot /www/domain<br />
+        </span>
+        &lt;/VirtualHost&gt;<br />
+        <br />
+        &lt;VirtualHost *&gt;<br />
+        <span class="indent">ServerName www.otherdomain.tld<br />
+            DocumentRoot /www/otherdomain<br />
+        </span>
+        &lt;/VirtualHost&gt;<br />
+    </code></p></div>
+
+    <p>You can alternatively specify an explicit IP address in place of the
+    <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">&lt;VirtualHost&gt;</a></code> directives. For example, you might want to do this
+    in order to run some name-based virtual hosts on one IP address, and either
+    IP-based, or another set of name-based virtual hosts on another address.</p>
+
+    <p>Many servers want to be accessible by more than one name. This is
+    possible with the <code class="directive"><a href="../mod/core.html#serveralias">ServerAlias</a></code>
+    directive, placed inside the <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> section. For example in the first <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> block above, the
+    <code class="directive"><a href="../mod/core.html#serveralias">ServerAlias</a></code> directive indicates that
+    the listed names are other names which people can use to see that same
+    web site:</p>
+
+    <div class="example"><p><code>
+        ServerAlias domain.tld *.domain.tld
+    </code></p></div>
+
+    <p>then requests for all hosts in the <code>domain.tld</code> domain will
+    be served by the <code>www.domain.tld</code> virtual host. The wildcard
+    characters <code>*</code> and <code>?</code> can be used to match names.
+    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
+    first have your DNS server properly configured to map those names to an IP
+    address associated with your server.</p>
+
+    <p>Finally, you can fine-tune the configuration of the virtual hosts
+    by placing other directives inside the <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> containers. Most directives can be
+    placed in these containers and will then change the configuration only of
+    the relevant virtual host. To find out if a particular directive is allowed,
+    check the <a href="../mod/directive-dict.html#Context">Context</a> of the
+    directive. Configuration directives set in the <em>main server context</em>
+    (outside any <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code>
+    container) will be used only if they are not overridden by the virtual host
+    settings.</p>
+
+    <p>Now when a request arrives, the server will first check if it is using
+    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">&lt;VirtualHost&gt;</a></code> section with a matching
+    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
+    hostname. If it finds one, then it uses the configuration for that server.
+    If no matching virtual host  is found, then <strong>the first listed virtual
+    host</strong> that matches the IP address will be used.</p>
+
+    <p>As a consequence, the first listed virtual host is the <em>default</em>
+    virtual host.  The <code class="directive"><a href="../mod/core.html#documentroot">DocumentRoot</a></code> from
+    the <em>main server</em> will <strong>never</strong> be used when an IP
+    address matches the <code class="directive"><a href="../mod/core.html#namevirtualhost">NameVirtualHost</a></code> 
+    directive. If you would like to have a special configuration for requests 
+    that do not        match any particular virtual host, simply put that configuration
+    in a <code class="directive"><a href="../mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code>
+    container and list it first in the configuration file.</p>
 
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
     <p>Example configuration:</p>
 
     <div class="example"><p><code>
-    NameVirtualHost 111.22.33.44<br />
-    <br />
-    &lt;VirtualHost 111.22.33.44&gt;<br />
-    <span class="indent">
-    ServerName www.domain.tld<br />
-    ServerPath /domain<br />
-    DocumentRoot /web/domain<br />
-    </span>
-    &lt;/VirtualHost&gt;<br />
-         </code></p></div>
+        NameVirtualHost 111.22.33.44<br />
+        <br />
+        &lt;VirtualHost 111.22.33.44&gt;<br />
+        <span class="indent">
+            ServerName www.domain.tld<br />
+            ServerPath /domain<br />
+            DocumentRoot /web/domain<br />
+        </span>
+        &lt;/VirtualHost&gt;<br />
+    </code></p></div>
 
     <p>What does this mean? It means that a request for any URI
     beginning with "<code>/domain</code>" will be served from the
index 9a156caea55fbe70e402fe7a6aa0b17fa3ee3c35..08c651a25d91b0c6a1729b9bda1f105c0ffb0e1e 100644 (file)
@@ -7,9 +7,7 @@
 <title>Name-based Virtual Host Support</title>
 
 <summary>
-
-       <p>This document describes when and how to use name-based virtual hosts.</p>
-
+    <p>This document describes when and how to use name-based virtual hosts.</p>
 </summary>
 
 <seealso><a href="ip-based.html">IP-based Virtual Host Support</a></seealso>
 
 <section id="namevip"><title>Name-based vs. IP-based Virtual Hosts</title>
 
-       <p>IP-based virtual hosts use the IP address of the connection to
-       determine the correct virtual host to serve.  Therefore you need to
-       have a separate IP address for each host.  With name-based virtual
-       hosting, the server relies on the client to report the hostname as
-       part of the HTTP headers.  Using this technique, many different hosts
-       can share the same IP address.</p>
-
-       <p>Name-based virtual hosting is usually simpler, since you need
-       only configure your DNS server to map each hostname to the correct
-       IP address and then configure the Apache HTTP Server to recognize
-       the different hostnames.  Name-based virtual hosting also eases
-       the demand for scarce IP addresses.  Therefore you should use
-       name-based virtual hosting unless there is a specific reason to
-       choose IP-based virtual hosting.  Some reasons why you might consider
-       using IP-based virtual hosting:</p>
-
-       <ul>
-               <li>Some ancient clients are not compatible with name-based virtual
-               hosting.  For name-based virtual hosting to work, the client must send
-               the HTTP Host header.  This is required by HTTP/1.1, and is
-               implemented by all modern HTTP/1.0 browsers as an extension.  If you
-               need to support obsolete clients and still use name-based virtual
-               hosting, a possible technique is discussed at the end of this
-               document.</li>
-
-               <li>Name-based virtual hosting cannot be used with SSL secure servers
-               because of the nature of the SSL protocol.</li>
-
-               <li>Some operating systems and network equipment implement bandwidth
-               management techniques that cannot differentiate between hosts unless
-               they are on separate IP addresses.</li>
-       </ul>
+    <p>IP-based virtual hosts use the IP address of the connection to
+    determine the correct virtual host to serve.  Therefore you need to
+    have a separate IP address for each host.  With name-based virtual
+    hosting, the server relies on the client to report the hostname as
+    part of the HTTP headers.  Using this technique, many different hosts
+    can share the same IP address.</p>
+
+    <p>Name-based virtual hosting is usually simpler, since you need
+    only configure your DNS server to map each hostname to the correct
+    IP address and then configure the Apache HTTP Server to recognize
+    the different hostnames.  Name-based virtual hosting also eases
+    the demand for scarce IP addresses.  Therefore you should use
+    name-based virtual hosting unless there is a specific reason to
+    choose IP-based virtual hosting.  Some reasons why you might consider
+    using IP-based virtual hosting:</p>
+
+    <ul>
+        <li>Some ancient clients are not compatible with name-based virtual
+        hosting.  For name-based virtual hosting to work, the client must send
+        the HTTP Host header.  This is required by HTTP/1.1, and is
+        implemented by all modern HTTP/1.0 browsers as an extension.  If you
+        need to support obsolete clients and still use name-based virtual
+        hosting, a possible technique is discussed at the end of this
+        document.</li>
+
+        <li>Name-based virtual hosting cannot be used with SSL secure servers
+        because of the nature of the SSL protocol.</li>
+
+        <li>Some operating systems and network equipment implement bandwidth
+        management techniques that cannot differentiate between hosts unless
+        they are on separate IP addresses.</li>
+    </ul>
 
 </section>
 
     </directivelist>
 </related>
 
-       <p>To use name-based virtual hosting, you must designate the IP
-       address (and possibly port) on the server that will be accepting
-       requests for the hosts.  This is configured using the <directive
-       module="core">NameVirtualHost</directive> directive.
-       In the normal case where any and all IP addresses on the server should
-       be used, you can use <code>*</code> as the argument to
-  <directive module="core">NameVirtualHost</directive>.  Note that mentioning an
-  IP address in a      <directive module="core">NameVirtualHost</directive> directive
-  does not automatically make the      server listen to that IP address.  See 
-  <a href="../bind.html">Setting which addresses and ports Apache uses</a> 
-  for more details.  In addition,      any IP address specified here must be 
-  associated with a network interface
-       on the server.</p>
-
-       <p>The next step is to create a <directive type="section"
-       module="core">VirtualHost</directive> block for
-       each different host that you would like to serve.  The argument to the
-  <directive type="section"    module="core">VirtualHost</directive> directive 
-  should be the same as the argument to the <directive
-  module="core">NameVirtualHost</directive> directive (ie, an IP address, 
-  or <code>*</code> for all addresses).  Inside each <directive type="section" 
-  module="core">VirtualHost</directive> block, you will need at minimum a
-       <directive module="core">ServerName</directive> directive to
-       designate which host is served and a <directive
-       module="core">DocumentRoot</directive> directive to
-       show where in the filesystem the content for that host lives.</p>
+    <p>To use name-based virtual hosting, you must designate the IP
+    address (and possibly port) on the server that will be accepting
+    requests for the hosts.  This is configured using the <directive
+    module="core">NameVirtualHost</directive> directive.
+    In the normal case where any and all IP addresses on the server should
+    be used, you can use <code>*</code> as the argument to <directive
+    module="core">NameVirtualHost</directive>. Note that mentioning an
+    IP address in a <directive module="core">NameVirtualHost</directive>
+    directive does not automatically make the server listen to that IP address.
+    See <a href="../bind.html">Setting which addresses and ports Apache uses</a> 
+    for more details. In addition, any IP address specified here must be
+    associated with a network interface        on the server.</p>
+
+    <p>The next step is to create a <directive type="section"
+    module="core">VirtualHost</directive> block for
+    each different host that you would like to serve. The argument to the
+    <directive type="section" module="core">VirtualHost</directive> directive
+    should be the same as the argument to the <directive
+    module="core">NameVirtualHost</directive> directive (ie, an IP address,
+    or <code>*</code> for all addresses).  Inside each <directive type="section"       
+    module="core">VirtualHost</directive> block, you will need at minimum a
+    <directive module="core">ServerName</directive> directive to designate
+    which host is served and a <directive module="core">DocumentRoot</directive>
+    directive to show where in the filesystem the content for that host
+    lives.</p>
 
     <note><title>Main host goes away</title>
-       If you are adding virtual hosts to an existing web server, you
-       must also create a <directive type="section"    
-  module="core">VirtualHost</directive> block for the existing host.
-  The <directive module="core">ServerName</directive> and 
-  <directive module="core">DocumentRoot</directive> included in this virtual 
-  host should be the same as the global        <directive 
-  module="core">ServerName</directive> and <directive 
-  module="core">DocumentRoot</directive>.  List this   virtual host first in 
-  the configuration file so that it will act as        the default host.
+        <p>If you are adding virtual hosts to an existing web server, you
+        must also create a <directive type="section" module="core"
+        >VirtualHost</directive> block for the existing host. The <directive
+        module="core">ServerName</directive> and <directive module="core"
+        >DocumentRoot</directive> included in this virtual host should be the
+        same as the global <directive module="core">ServerName</directive> and
+        <directive module="core">DocumentRoot</directive>. List this virtual
+        host first in the configuration file so that it will act as the default
+        host.</p>
     </note>
 
-       <p>For example, suppose that you are serving the domain
-       <code>www.domain.tld</code> and you wish to add the virtual host
-       <code>www.otherdomain.tld</code>, which points at the same IP address.
-       Then you simply add the following to <code>httpd.conf</code>:</p>
-
-       <example>
-    NameVirtualHost *<br />
-    <br />
-    &lt;VirtualHost *&gt;<br />
-    <indent>
-    ServerName www.domain.tld<br />
-    ServerAlias domain.tld *.domain.tld<br />
-    DocumentRoot /www/domain<br />
-    </indent>
-    &lt;/VirtualHost&gt;<br />
-    <br />
-    &lt;VirtualHost *&gt;<br />
-    <indent>ServerName www.otherdomain.tld<br />
-    DocumentRoot /www/otherdomain<br />
-    </indent>
-    &lt;/VirtualHost&gt;<br />
-       </example>
-
-       <p>You can alternatively specify an explicit IP address in place of
-  the <code>*</code> in both the <directive 
-  module="core">NameVirtualHost</directive> and <directive 
-  type="section"       module="core">VirtualHost</directive> directives. 
-  For example, you might want to do this in order to run some name-based virtual 
-  hosts on one IP address, and either IP-based, or another set of name-based
-  virtual hosts on another address.</p>
-
-       <p>Many servers want to be accessible by more than one name.  This is
-       possible with the <directive module="core">ServerAlias</directive>
-       directive, placed inside the <directive type="section"  
-  module="core">VirtualHost</directive> section. For
-  example in the first <directive type="section"       
-  module="core">VirtualHost</directive> block above, the <directive
-  module="core">ServerAlias</directive> directive indicates that the
-  listed names are other names which people can use to see that same
-  web site:</p>
-
-       <example>
-    ServerAlias domain.tld *.domain.tld
-       </example>
-
-       <p>then requests for all hosts in the <code>domain.tld</code> domain
-       will be served by the <code>www.domain.tld</code> virtual host.  The
-  wildcard characters <code>*</code> and <code>?</code> can be used to match 
-  names.  Of course, you can't just make up names and place them in <directive 
-  module="core">ServerName</directive> or <code>ServerAlias</code>.  
-  You must first have your DNS server  properly configured to map those names 
-  to an IP address associated  with your server.</p>
-
-       <p>Finally, you can fine-tune the configuration of the virtual hosts
-       by placing other directives inside the
-  <directive type="section"    module="core">VirtualHost</directive> containers.  
-  Most directives can be placed in these containers and will then change the 
-  configuration only of the relevant virtual host.  To find out if a particular 
-  directive    is allowed, check the <a
-       href="../mod/directive-dict.html#Context">Context</a> of the
-       directive.  Configuration directives set in the <em>main server
-  context</em> (outside any <directive type="section"  
-  module="core">VirtualHost</directive> container) will be used only if they 
-  are not overridden by the virtual host settings.</p>
-
-       <p>Now when a request arrives, the server will first check if it is
-  using an IP address that matches the <directive
-  module="core">NameVirtualHost</directive>.  If it is, then it will look at
-  each <directive type="section"       module="core">VirtualHost</directive>   
-  section with a matching IP address and try to find one where the     
-  <directive module="core">ServerName</directive> or 
-  <code>ServerAlias</code> matches the requested hostname.  If it finds one, 
-  then it uses the configuration for that server. If no matching virtual host 
-  is found, then       <strong>the first listed virtual host</strong> that matches 
-  the IP address will be used.</p>
-
-       <p>As a consequence, the first listed virtual host is the
-  <em>default</em> virtual host.  The <directive 
-  module="core">DocumentRoot</directive> from the
-       <em>main server</em> will <strong>never</strong> be used when an IP
-  address matches the <directive module="core">NameVirtualHost</directive> 
-  directive.  If you would like to have a special configuration for requests 
-  that do not  match any particular virtual host, simply put that configuration 
-  in a <directive type="section"       module="core">VirtualHost</directive> 
-  container and list it first in the configuration file.</p>
+    <p>For example, suppose that you are serving the domain
+    <code>www.domain.tld</code> and you wish to add the virtual host
+    <code>www.otherdomain.tld</code>, which points at the same IP address.
+    Then you simply add the following to <code>httpd.conf</code>:</p>
+
+    <example>
+        NameVirtualHost *<br />
+        <br />
+        &lt;VirtualHost *&gt;<br />
+        <indent>
+            ServerName www.domain.tld<br />
+            ServerAlias domain.tld *.domain.tld<br />
+            DocumentRoot /www/domain<br />
+        </indent>
+        &lt;/VirtualHost&gt;<br />
+        <br />
+        &lt;VirtualHost *&gt;<br />
+        <indent>ServerName www.otherdomain.tld<br />
+            DocumentRoot /www/otherdomain<br />
+        </indent>
+        &lt;/VirtualHost&gt;<br />
+    </example>
+
+    <p>You can alternatively specify an explicit IP address in place of the
+    <code>*</code> in both the <directive module="core"
+    >NameVirtualHost</directive> and <directive type="section" module="core"
+    >VirtualHost</directive> directives. For example, you might want to do this
+    in order to run some name-based virtual hosts on one IP address, and either
+    IP-based, or another set of name-based virtual hosts on another address.</p>
+
+    <p>Many servers want to be accessible by more than one name. This is
+    possible with the <directive module="core">ServerAlias</directive>
+    directive, placed inside the <directive type="section" module="core"
+    >VirtualHost</directive> section. For example in the first <directive
+    type="section" module="core">VirtualHost</directive> block above, the
+    <directive module="core">ServerAlias</directive> directive indicates that
+    the listed names are other names which people can use to see that same
+    web site:</p>
+
+    <example>
+        ServerAlias domain.tld *.domain.tld
+    </example>
+
+    <p>then requests for all hosts in the <code>domain.tld</code> domain will
+    be served by the <code>www.domain.tld</code> virtual host. The wildcard
+    characters <code>*</code> and <code>?</code> can be used to match names.
+    Of course, you can't just make up names and place them in <directive
+    module="core">ServerName</directive> or <code>ServerAlias</code>. You must
+    first have your DNS server properly configured to map those names to an IP
+    address associated with your server.</p>
+
+    <p>Finally, you can fine-tune the configuration of the virtual hosts
+    by placing other directives inside the <directive type="section"
+    module="core">VirtualHost</directive> containers. Most directives can be
+    placed in these containers and will then change the configuration only of
+    the relevant virtual host. To find out if a particular directive is allowed,
+    check the <a href="../mod/directive-dict.html#Context">Context</a> of the
+    directive. Configuration directives set in the <em>main server context</em>
+    (outside any <directive type="section" module="core">VirtualHost</directive>
+    container) will be used only if they are not overridden by the virtual host
+    settings.</p>
+
+    <p>Now when a request arrives, the server will first check if it is using
+    an IP address that matches the <directive module="core"
+    >NameVirtualHost</directive>. If it is, then it will look at each <directive
+    type="section" module="core">VirtualHost</directive> section with a matching
+    IP address and try to find one where the <directive module="core"
+    >ServerName</directive> or <code>ServerAlias</code> matches the requested
+    hostname. If it finds one, then it uses the configuration for that server.
+    If no matching virtual host  is found, then <strong>the first listed virtual
+    host</strong> that matches the IP address will be used.</p>
+
+    <p>As a consequence, the first listed virtual host is the <em>default</em>
+    virtual host.  The <directive module="core">DocumentRoot</directive> from
+    the <em>main server</em> will <strong>never</strong> be used when an IP
+    address matches the <directive module="core">NameVirtualHost</directive> 
+    directive. If you would like to have a special configuration for requests 
+    that do not        match any particular virtual host, simply put that configuration
+    in a <directive type="section" module="core">VirtualHost</directive>
+    container and list it first in the configuration file.</p>
 
 </section>
 
     <p>Example configuration:</p>
 
     <example>
-    NameVirtualHost 111.22.33.44<br />
-    <br />
-    &lt;VirtualHost 111.22.33.44&gt;<br />
-    <indent>
-    ServerName www.domain.tld<br />
-    ServerPath /domain<br />
-    DocumentRoot /web/domain<br />
-    </indent>
-    &lt;/VirtualHost&gt;<br />
-         </example>
+        NameVirtualHost 111.22.33.44<br />
+        <br />
+        &lt;VirtualHost 111.22.33.44&gt;<br />
+        <indent>
+            ServerName www.domain.tld<br />
+            ServerPath /domain<br />
+            DocumentRoot /web/domain<br />
+        </indent>
+        &lt;/VirtualHost&gt;<br />
+    </example>
 
     <p>What does this mean? It means that a request for any URI
     beginning with "<code>/domain</code>" will be served from the
 
 </section>
 </manualpage>
-
-