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 / F233088_ipbased.html.en < prev    next >
Extensible Markup Language  |  2003-03-30  |  9KB  |  149 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
  4.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  5.               This file is generated from xml source: DO NOT EDIT
  6.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  7.       -->
  8. <title>Apache IP-based Virtual Host Support - Apache HTTP Server</title>
  9. <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
  10. <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
  11. <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
  12. <link href="../images/favicon.ico" rel="shortcut icon" /></head>
  13. <body id="manual-page"><div id="page-header">
  14. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
  15. <p class="apache">Apache HTTP Server Version 2.0</p>
  16. <img alt="" src="../images/feather.gif" /></div>
  17. <div class="up"><a href="./"><img title="<-" alt="<-" src="../images/left.gif" /></a></div>
  18. <div id="path">
  19. <a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs-project/">Documentation</a> > <a href="../">Version 2.0</a> > <a href="./">Virtual Hosts</a></div><div id="page-content"><div id="preamble"><h1>Apache IP-based Virtual Host Support</h1></div>
  20. <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#requirements">System requirements</a></li>
  21. <li><img alt="" src="../images/down.gif" /> <a href="#howto">How to set up Apache</a></li>
  22. <li><img alt="" src="../images/down.gif" /> <a href="#multiple">Setting up multiple daemons</a></li>
  23. <li><img alt="" src="../images/down.gif" /> <a href="#single">Setting up a single daemon
  24.     with virtual hosts</a></li>
  25. </ul><h3>See also</h3><ul class="seealso"><li>
  26. <a href="name-based.html">Name-based Virtual Hosts Support</a>
  27. </li></ul></div>
  28. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  29. <div class="section">
  30. <h2><a name="requirements" id="requirements">System requirements</a></h2>
  31.  
  32.     <p>As the term <cite>IP-based</cite> indicates, the server
  33.     <strong>must have a different IP address for each IP-based
  34.     virtual host</strong>. This can be achieved by the machine
  35.     having several physical network connections, or by use of
  36.     virtual interfaces which are supported by most modern operating
  37.     systems (see system documentation for details, these are
  38.     frequently called "ip aliases", and the "ifconfig" command is
  39.     most commonly used to set them up).</p>
  40.  
  41. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  42. <div class="section">
  43. <h2><a name="howto" id="howto">How to set up Apache</a></h2>
  44.  
  45.     <p>There are two ways of configuring apache to support multiple
  46.     hosts. Either by running a separate httpd daemon for each
  47.     hostname, or by running a single daemon which supports all the
  48.     virtual hosts.</p>
  49.  
  50.     <p>Use multiple daemons when:</p>
  51.  
  52.     <ul>
  53.       <li>There are security partitioning issues, such as company1
  54.       does not want anyone at company2 to be able to read their
  55.       data except via the web. In this case you would need two
  56.       daemons, each running with different <code class="directive"><a href="../mod/mpm_common.html#user">User</a></code>, <code class="directive"><a href="../mod/mpm_common.html#group">Group</a></code>, <code class="directive"><a href="../mod/mpm_common.html#listen">Listen</a></code>, and <code class="directive"><a href="../mod/core.html#serverroot">ServerRoot</a></code> settings.</li>
  57.  
  58.       <li>You can afford the memory and <a href="../misc/descriptors.html">file descriptor
  59.       requirements</a> of listening to every IP alias on the
  60.       machine. It's only possible to <code class="directive"><a href="../mod/mpm_common.html#listen">Listen</a></code> to the "wildcard"
  61.       address, or to specific addresses. So if you have a need to
  62.       listen to a specific address for whatever reason, then you
  63.       will need to listen to all specific addresses. (Although one
  64.       httpd could listen to N-1 of the addresses, and another could
  65.       listen to the remaining address.)</li>
  66.     </ul>
  67.  
  68.     <p>Use a single daemon when:</p>
  69.  
  70.     <ul>
  71.       <li>Sharing of the httpd configuration between virtual hosts
  72.       is acceptable.</li>
  73.  
  74.       <li>The machine services a large number of requests, and so
  75.       the performance loss in running separate daemons may be
  76.       significant.</li>
  77.     </ul>
  78.  
  79. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  80. <div class="section">
  81. <h2><a name="multiple" id="multiple">Setting up multiple daemons</a></h2>
  82.  
  83.     <p>Create a separate httpd installation for each virtual host. For
  84.     each installation, use the <code class="directive"><a href="../mod/mpm_common.html#listen">Listen</a></code> directive in the
  85.     configuration file to select which IP address (or virtual host)
  86.     that daemon services. e.g.</p>
  87.  
  88.     <div class="example"><p><code>
  89.     Listen www.smallco.com:80
  90.     </code></p></div>
  91.  
  92.     <p>It is recommended that you use an IP address instead of a
  93.     hostname (see <a href="../dns-caveats.html">DNS caveats</a>).</p>
  94.  
  95. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  96. <div class="section">
  97. <h2><a name="single" id="single">Setting up a single daemon
  98.     with virtual hosts</a></h2>
  99.  
  100.     <p>For this case, a single httpd will service requests for the
  101.     main server and all the virtual hosts. The <code class="directive"><a href="../mod/core.html#virtualhost">VirtualHost</a></code> directive
  102.     in the configuration file is used to set the values of <code class="directive"><a href="../mod/core.html#serveradmin">ServerAdmin</a></code>, <code class="directive"><a href="../mod/core.html#servername">ServerName</a></code>, <code class="directive"><a href="../mod/core.html#documentroot">DocumentRoot</a></code>, <code class="directive"><a href="../mod/core.html#errorlog">ErrorLog</a></code> and <code class="directive"><a href="../mod/mod_log_config.html#transferlog">TransferLog</a></code>
  103.     or <code class="directive"><a href="../mod/mod_log_config.html#customlog">CustomLog</a></code>
  104.     configuration directives to different values for each virtual
  105.     host. e.g.</p>
  106.  
  107.     <div class="example"><p><code>
  108.     <VirtualHost www.smallco.com><br />
  109.     ServerAdmin webmaster@mail.smallco.com<br />
  110.     DocumentRoot /groups/smallco/www<br />
  111.     ServerName www.smallco.com<br />
  112.     ErrorLog /groups/smallco/logs/error_log<br />
  113.     TransferLog /groups/smallco/logs/access_log<br />
  114.     </VirtualHost><br />
  115.         <br />
  116.     <VirtualHost www.baygroup.org><br />
  117.     ServerAdmin webmaster@mail.baygroup.org<br />
  118.     DocumentRoot /groups/baygroup/www<br />
  119.     ServerName www.baygroup.org<br />
  120.     ErrorLog /groups/baygroup/logs/error_log<br />
  121.     TransferLog /groups/baygroup/logs/access_log<br />
  122.     </VirtualHost>
  123.         </code></p></div>
  124.  
  125.     <p>It is recommended that you use an IP address instead of a
  126.     hostname (see <a href="../dns-caveats.html">DNS caveats</a>).</p>
  127.  
  128.     <p>Almost <strong>any</strong> configuration directive can be
  129.     put in the VirtualHost directive, with the exception of
  130.     directives that control process creation and a few other
  131.     directives. To find out if a directive can be used in the
  132.     VirtualHost directive, check the <a href="../mod/directive-dict.html#Context">Context</a> using the
  133.     <a href="../mod/directives.html">directive index</a>.</p>
  134.  
  135.     <p><code class="directive"><a href="../mod/mpm_common.html#user">User</a></code> and <code class="directive"><a href="../mod/mpm_common.html#group">Group</a></code> may be used inside a
  136.     VirtualHost directive if the <a href="../suexec.html">suEXEC
  137.     wrapper</a> is used.</p>
  138.  
  139.     <p><em>SECURITY:</em> When specifying where to write log files,
  140.     be aware of some security risks which are present if anyone
  141.     other than the user that starts Apache has write access to the
  142.     directory where they are written. See the <a href="../misc/security_tips.html">security tips</a> document
  143.     for details.</p>
  144.  
  145. </div></div>
  146. <div id="footer">
  147. <p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p>
  148. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
  149. </body></html>