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