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 / F233098_ipbased.xml < prev    next >
Extensible Markup Language  |  2002-11-10  |  6KB  |  147 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="./">Virtual Hosts</parentdocument>
  8.    <title>Apache IP-based Virtual Host Support</title>
  9.  
  10. <seealso>
  11. <a href="name-based.html">Name-based Virtual Hosts Support</a>
  12. </seealso>
  13.  
  14. <section id="requirements"><title>System requirements</title>
  15.  
  16.     <p>As the term <cite>IP-based</cite> indicates, the server
  17.     <strong>must have a different IP address for each IP-based
  18.     virtual host</strong>. This can be achieved by the machine
  19.     having several physical network connections, or by use of
  20.     virtual interfaces which are supported by most modern operating
  21.     systems (see system documentation for details, these are
  22.     frequently called "ip aliases", and the "ifconfig" command is
  23.     most commonly used to set them up).</p>
  24.  
  25. </section>
  26.  
  27. <section id="howto"><title>How to set up Apache</title>
  28.  
  29.     <p>There are two ways of configuring apache to support multiple
  30.     hosts. Either by running a separate httpd daemon for each
  31.     hostname, or by running a single daemon which supports all the
  32.     virtual hosts.</p>
  33.  
  34.     <p>Use multiple daemons when:</p>
  35.  
  36.     <ul>
  37.       <li>There are security partitioning issues, such as company1
  38.       does not want anyone at company2 to be able to read their
  39.       data except via the web. In this case you would need two
  40.       daemons, each running with different <directive
  41.       module="mpm_common">User</directive>, <directive
  42.       module="mpm_common">Group</directive>, <directive
  43.       module="mpm_common">Listen</directive>, and <directive
  44.       module="core">ServerRoot</directive> settings.</li>
  45.  
  46.       <li>You can afford the memory and <a
  47.       href="../misc/descriptors.html">file descriptor
  48.       requirements</a> of listening to every IP alias on the
  49.       machine. It's only possible to <directive
  50.       module="mpm_common">Listen</directive> to the "wildcard"
  51.       address, or to specific addresses. So if you have a need to
  52.       listen to a specific address for whatever reason, then you
  53.       will need to listen to all specific addresses. (Although one
  54.       httpd could listen to N-1 of the addresses, and another could
  55.       listen to the remaining address.)</li>
  56.     </ul>
  57.  
  58.     <p>Use a single daemon when:</p>
  59.  
  60.     <ul>
  61.       <li>Sharing of the httpd configuration between virtual hosts
  62.       is acceptable.</li>
  63.  
  64.       <li>The machine services a large number of requests, and so
  65.       the performance loss in running separate daemons may be
  66.       significant.</li>
  67.     </ul>
  68.  
  69. </section>
  70.  
  71. <section id="multiple"><title>Setting up multiple daemons</title>
  72.  
  73.     <p>Create a separate httpd installation for each virtual host. For
  74.     each installation, use the <directive
  75.     module="mpm_common">Listen</directive> directive in the
  76.     configuration file to select which IP address (or virtual host)
  77.     that daemon services. e.g.</p>
  78.  
  79.     <example>
  80.     Listen www.smallco.com:80
  81.     </example>
  82.  
  83.     <p>It is recommended that you use an IP address instead of a
  84.     hostname (see <a href="../dns-caveats.html">DNS caveats</a>).</p>
  85.  
  86. </section>
  87.  
  88. <section id="single"><title>Setting up a single daemon
  89.     with virtual hosts</title>
  90.  
  91.     <p>For this case, a single httpd will service requests for the
  92.     main server and all the virtual hosts. The <directive
  93.     module="core">VirtualHost</directive> directive
  94.     in the configuration file is used to set the values of <directive
  95.     module="core">ServerAdmin</directive>, <directive
  96.     module="core">ServerName</directive>, <directive
  97.     module="core">DocumentRoot</directive>, <directive
  98.     module="core">ErrorLog</directive> and <directive
  99.     module="mod_log_config">TransferLog</directive>
  100.     or <directive module="mod_log_config">CustomLog</directive>
  101.     configuration directives to different values for each virtual
  102.     host. e.g.</p>
  103.  
  104.     <example>
  105.     <VirtualHost www.smallco.com><br />
  106.     ServerAdmin webmaster@mail.smallco.com<br />
  107.     DocumentRoot /groups/smallco/www<br />
  108.     ServerName www.smallco.com<br />
  109.     ErrorLog /groups/smallco/logs/error_log<br />
  110.     TransferLog /groups/smallco/logs/access_log<br />
  111.     </VirtualHost><br />
  112.         <br />
  113.     <VirtualHost www.baygroup.org><br />
  114.     ServerAdmin webmaster@mail.baygroup.org<br />
  115.     DocumentRoot /groups/baygroup/www<br />
  116.     ServerName www.baygroup.org<br />
  117.     ErrorLog /groups/baygroup/logs/error_log<br />
  118.     TransferLog /groups/baygroup/logs/access_log<br />
  119.     </VirtualHost>
  120.         </example>
  121.  
  122.     <p>It is recommended that you use an IP address instead of a
  123.     hostname (see <a href="../dns-caveats.html">DNS caveats</a>).</p>
  124.  
  125.     <p>Almost <strong>any</strong> configuration directive can be
  126.     put in the VirtualHost directive, with the exception of
  127.     directives that control process creation and a few other
  128.     directives. To find out if a directive can be used in the
  129.     VirtualHost directive, check the <a
  130.     href="../mod/directive-dict.html#Context">Context</a> using the
  131.     <a href="../mod/directives.html">directive index</a>.</p>
  132.  
  133.     <p><directive module="mpm_common">User</directive> and <directive
  134.     module="mpm_common">Group</directive> may be used inside a
  135.     VirtualHost directive if the <a href="../suexec.html">suEXEC
  136.     wrapper</a> is used.</p>
  137.  
  138.     <p><em>SECURITY:</em> When specifying where to write log files,
  139.     be aware of some security risks which are present if anyone
  140.     other than the user that starts Apache has write access to the
  141.     directory where they are written. See the <a
  142.     href="../misc/security_tips.html">security tips</a> document
  143.     for details.</p>
  144.  
  145. </section>
  146. </manualpage>
  147.