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 / F278674_mass.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  17KB  |  437 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.6 $ -->
  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="mass.xml.meta">
  23. <parentdocument href="./">Virtual Hosts</parentdocument>
  24.    <title>Dynamically configured mass virtual hosting</title>
  25.  
  26. <summary>
  27.  
  28.     <p>This document describes how to efficiently serve an
  29.     arbitrary number of virtual hosts with Apache 1.3. <!--
  30.  
  31.                 Written by Tony Finch (fanf@demon.net) (dot@dotat.at).
  32.  
  33.                 Some examples were derived from Ralf S. Engleschall's document
  34.                     http://www.engelschall.com/pw/apache/rewriteguide/
  35.  
  36.                 Some suggestions were made by Brian Behlendorf.
  37.  
  38.                 -->
  39.     </p>
  40.  
  41. </summary>
  42.  
  43. <section id="motivation"><title>Motivation</title>
  44.  
  45.     <p>The techniques described here are of interest if your
  46.     <code>httpd.conf</code> contains many
  47.     <code><VirtualHost></code> sections that are
  48.     substantially the same, for example:</p>
  49.  
  50. <example>
  51. NameVirtualHost 111.22.33.44<br />
  52. <VirtualHost 111.22.33.44><br />
  53. <indent>
  54.     ServerName                 www.customer-1.com<br />
  55.     DocumentRoot        /www/hosts/www.customer-1.com/docs<br />
  56.     ScriptAlias  /cgi-bin/  /www/hosts/www.customer-1.com/cgi-bin<br />
  57. </indent>
  58. </VirtualHost><br />
  59. <VirtualHost 111.22.33.44><br />
  60. <indent>
  61.     ServerName                 www.customer-2.com<br />
  62.     DocumentRoot        /www/hosts/www.customer-2.com/docs<br />
  63.     ScriptAlias  /cgi-bin/  /www/hosts/www.customer-2.com/cgi-bin<br />
  64. </indent>
  65. </VirtualHost><br />
  66. # blah blah blah<br />
  67. <VirtualHost 111.22.33.44><br />
  68. <indent>
  69.     ServerName                 www.customer-N.com<br />
  70.     DocumentRoot        /www/hosts/www.customer-N.com/docs<br />
  71.     ScriptAlias  /cgi-bin/  /www/hosts/www.customer-N.com/cgi-bin<br />
  72. </indent>
  73. </VirtualHost>
  74. </example>
  75.  
  76.     <p>The basic idea is to replace all of the static
  77.     <code><VirtualHost></code> configuration with a mechanism
  78.     that works it out dynamically. This has a number of
  79.     advantages:</p>
  80.  
  81.     <ol>
  82.       <li>Your configuration file is smaller so Apache starts
  83.       faster and uses less memory.</li>
  84.  
  85.       <li>Adding virtual hosts is simply a matter of creating the
  86.       appropriate directories in the filesystem and entries in the
  87.       DNS - you don't need to reconfigure or restart Apache.</li>
  88.     </ol>
  89.  
  90.     <p>The main disadvantage is that you cannot have a different
  91.     log file for each virtual host; however if you have very many
  92.     virtual hosts then doing this is dubious anyway because it eats
  93.     file descriptors. It is better to log to a pipe or a fifo and
  94.     arrange for the process at the other end to distribute the logs
  95.     to the customers (it can also accumulate statistics, etc.).</p>
  96.  
  97. </section>
  98.  
  99. <section id="overview"><title>Overview</title>
  100.  
  101.     <p>A virtual host is defined by two pieces of information: its
  102.     IP address, and the contents of the <code>Host:</code> header
  103.     in the HTTP request. The dynamic mass virtual hosting technique
  104.     is based on automatically inserting this information into the
  105.     pathname of the file that is used to satisfy the request. This
  106.     is done most easily using <module>mod_vhost_alias</module>,
  107.     but if you are using a version of Apache up to 1.3.6 then you
  108.     must use <module>mod_rewrite</module>.
  109.     Both of these modules are disabled by default; you must enable
  110.     one of them when configuring and building Apache if you want to
  111.     use this technique.</p>
  112.  
  113.     <p>A couple of things need to be `faked' to make the dynamic
  114.     virtual host look like a normal one. The most important is the
  115.     server name which is used by Apache to generate
  116.     self-referential URLs, etc. It is configured with the
  117.     <code>ServerName</code> directive, and it is available to CGIs
  118.     via the <code>SERVER_NAME</code> environment variable. The
  119.     actual value used at run time is controlled by the <directive
  120.     module="core">UseCanonicalName</directive>
  121.     setting. With <code>UseCanonicalName Off</code> the server name
  122.     comes from the contents of the <code>Host:</code> header in the
  123.     request. With <code>UseCanonicalName DNS</code> it comes from a
  124.     reverse DNS lookup of the virtual host's IP address. The former
  125.     setting is used for name-based dynamic virtual hosting, and the
  126.     latter is used for IP-based hosting. If Apache cannot work out
  127.     the server name because there is no <code>Host:</code> header
  128.     or the DNS lookup fails then the value configured with
  129.     <code>ServerName</code> is used instead.</p>
  130.  
  131.     <p>The other thing to `fake' is the document root (configured
  132.     with <code>DocumentRoot</code> and available to CGIs via the
  133.     <code>DOCUMENT_ROOT</code> environment variable). In a normal
  134.     configuration this setting is used by the core module when
  135.     mapping URIs to filenames, but when the server is configured to
  136.     do dynamic virtual hosting that job is taken over by another
  137.     module (either <code>mod_vhost_alias</code> or
  138.     <code>mod_rewrite</code>) which has a different way of doing
  139.     the mapping. Neither of these modules is responsible for
  140.     setting the <code>DOCUMENT_ROOT</code> environment variable so
  141.     if any CGIs or SSI documents make use of it they will get a
  142.     misleading value.</p>
  143.  
  144. </section>
  145.  
  146. <section id="simple"><title>Simple dynamic virtual hosts</title>
  147.  
  148.     <p>This extract from <code>httpd.conf</code> implements the
  149.     virtual host arrangement outlined in the <a
  150.     href="#motivation">Motivation</a> section above, but in a
  151.     generic fashion using <code>mod_vhost_alias</code>.</p>
  152.  
  153. <example>
  154. # get the server name from the Host: header<br />
  155. UseCanonicalName Off<br />
  156. <br />
  157. # this log format can be split per-virtual-host based on the first field<br />
  158. LogFormat "%V %h %l %u %t \"%r\" %s %b" vcommon<br />
  159. CustomLog logs/access_log vcommon<br />
  160. <br />
  161. # include the server name in the filenames used to satisfy requests<br />
  162. VirtualDocumentRoot /www/hosts/%0/docs<br />
  163. VirtualScriptAlias  /www/hosts/%0/cgi-bin
  164. </example>
  165.  
  166.     <p>This configuration can be changed into an IP-based virtual
  167.     hosting solution by just turning <code>UseCanonicalName
  168.     Off</code> into <code>UseCanonicalName DNS</code>. The server
  169.     name that is inserted into the filename is then derived from
  170.     the IP address of the virtual host.</p>
  171.  
  172. </section>
  173.  
  174. <section id="homepages"><title>A virtually hosted homepages system</title>
  175.  
  176.     <p>This is an adjustment of the above system tailored for an
  177.     ISP's homepages server. Using a slightly more complicated
  178.     configuration we can select substrings of the server name to
  179.     use in the filename so that e.g. the documents for
  180.     <code>www.user.isp.com</code> are found in
  181.     <code>/home/user/</code>. It uses a single <code>cgi-bin</code>
  182.     directory instead of one per virtual host.</p>
  183.  
  184. <example>
  185. # all the preliminary stuff is the same as above, then<br />
  186. <br />
  187. # include part of the server name in the filenames<br />
  188. VirtualDocumentRoot /www/hosts/%2/docs<br />
  189. <br />
  190. # single cgi-bin directory<br />
  191. ScriptAlias  /cgi-bin/  /www/std-cgi/<br />
  192. </example>
  193.  
  194.     <p>There are examples of more complicated
  195.     <code>VirtualDocumentRoot</code> settings in the
  196.     <module>mod_vhost_alias</module> documentation.</p>
  197.  
  198. </section>
  199.  
  200. <section id="combinations"><title>Using more than
  201.     one virtual hosting system on the same server</title>
  202.  
  203.     <p>With more complicated setups you can use Apache's normal
  204.     <code><VirtualHost></code> directives to control the
  205.     scope of the various virtual hosting configurations. For
  206.     example, you could have one IP address for homepages customers
  207.     and another for commercial customers with the following setup.
  208.     This can of course be combined with conventional
  209.     <code><VirtualHost></code> configuration sections.</p>
  210.  
  211. <example>
  212. UseCanonicalName Off<br />
  213. <br />
  214. LogFormat "%V %h %l %u %t \"%r\" %s %b" vcommon<br />
  215. <br />
  216. <Directory /www/commercial><br />
  217. <indent>
  218.     Options FollowSymLinks<br />
  219.     AllowOverride All<br />
  220. </indent>
  221. </Directory><br />
  222. <br />
  223. <Directory /www/homepages><br />
  224. <indent>
  225.     Options FollowSymLinks<br />
  226.     AllowOverride None<br />
  227. </indent>
  228. </Directory><br />
  229. <br />
  230. <VirtualHost 111.22.33.44><br />
  231. <indent>
  232.     ServerName www.commercial.isp.com<br />
  233.     <br />
  234.     CustomLog logs/access_log.commercial vcommon<br />
  235.     <br />
  236.     VirtualDocumentRoot /www/commercial/%0/docs<br />
  237.     VirtualScriptAlias  /www/commercial/%0/cgi-bin<br />
  238. </indent>
  239. </VirtualHost><br />
  240. <br />
  241. <VirtualHost 111.22.33.45><br />
  242. <indent>
  243.     ServerName www.homepages.isp.com<br />
  244.     <br />
  245.     CustomLog logs/access_log.homepages vcommon<br />
  246.     <br />
  247.     VirtualDocumentRoot /www/homepages/%0/docs<br />
  248.     ScriptAlias         /cgi-bin/ /www/std-cgi/<br />
  249. </indent>
  250. </VirtualHost>
  251. </example>
  252.  
  253. </section>
  254.  
  255. <section id="ipbased"><title>More efficient IP-based virtual hosting</title>
  256.  
  257.     <p>After <a href="#simple">the first example</a> I noted that
  258.     it is easy to turn it into an IP-based virtual hosting setup.
  259.     Unfortunately that configuration is not very efficient because
  260.     it requires a DNS lookup for every request. This can be avoided
  261.     by laying out the filesystem according to the IP addresses
  262.     themselves rather than the corresponding names and changing the
  263.     logging similarly. Apache will then usually not need to work
  264.     out the server name and so incur a DNS lookup.</p>
  265.  
  266. <example>
  267. # get the server name from the reverse DNS of the IP address<br />
  268. UseCanonicalName DNS<br />
  269. <br />
  270. # include the IP address in the logs so they may be split<br />
  271. LogFormat "%A %h %l %u %t \"%r\" %s %b" vcommon<br />
  272. CustomLog logs/access_log vcommon<br />
  273. <br />
  274. # include the IP address in the filenames<br />
  275. VirtualDocumentRootIP /www/hosts/%0/docs<br />
  276. VirtualScriptAliasIP  /www/hosts/%0/cgi-bin<br />
  277. </example>
  278.  
  279. </section>
  280.  
  281. <section id="oldversion"><title>Using older versions of Apache</title>
  282.  
  283.     <p>The examples above rely on <code>mod_vhost_alias</code>
  284.     which appeared after version 1.3.6. If you are using a version
  285.     of Apache without <code>mod_vhost_alias</code> then you can
  286.     implement this technique with <code>mod_rewrite</code> as
  287.     illustrated below, but only for Host:-header-based virtual
  288.     hosts.</p>
  289.  
  290.     <p>In addition there are some things to beware of with logging.
  291.     Apache 1.3.6 is the first version to include the
  292.     <code>%V</code> log format directive; in versions 1.3.0 - 1.3.3
  293.     the <code>%v</code> option did what <code>%V</code> does;
  294.     version 1.3.4 has no equivalent. In all these versions of
  295.     Apache the <code>UseCanonicalName</code> directive can appear
  296.     in <code>.htaccess</code> files which means that customers can
  297.     cause the wrong thing to be logged. Therefore the best thing to
  298.     do is use the <code>%{Host}i</code> directive which logs the
  299.     <code>Host:</code> header directly; note that this may include
  300.     <code>:port</code> on the end which is not the case for
  301.     <code>%V</code>.</p>
  302.  
  303. </section>
  304.  
  305. <section id="simple.rewrite"><title>Simple dynamic
  306.     virtual hosts using <code>mod_rewrite</code></title>
  307.  
  308.     <p>This extract from <code>httpd.conf</code> does the same
  309.     thing as <a href="#simple">the first example</a>. The first
  310.     half is very similar to the corresponding part above but with
  311.     some changes for backward compatibility and to make the
  312.     <code>mod_rewrite</code> part work properly; the second half
  313.     configures <code>mod_rewrite</code> to do the actual work.</p>
  314.  
  315.     <p>There are a couple of especially tricky bits: By default,
  316.     <code>mod_rewrite</code> runs before the other URI translation
  317.     modules (<code>mod_alias</code> etc.) so if they are used then
  318.     <code>mod_rewrite</code> must be configured to accommodate
  319.     them. Also, some magic must be performed to do a
  320.     per-dynamic-virtual-host equivalent of
  321.     <code>ScriptAlias</code>.</p>
  322.  
  323. <example>
  324. # get the server name from the Host: header<br />
  325. UseCanonicalName Off<br />
  326. <br />
  327. # splittable logs<br />
  328. LogFormat "%{Host}i %h %l %u %t \"%r\" %s %b" vcommon<br />
  329. CustomLog logs/access_log vcommon<br />
  330. <br />
  331. <Directory /www/hosts><br />
  332. <indent>
  333.     # ExecCGI is needed here because we can't force<br />
  334.     # CGI execution in the way that ScriptAlias does<br />
  335.     Options FollowSymLinks ExecCGI<br />
  336. </indent>
  337. </Directory><br />
  338. <br />
  339. # now for the hard bit<br />
  340. <br />
  341. RewriteEngine On<br />
  342. <br />
  343. # a ServerName derived from a Host: header may be any case at all<br />
  344. RewriteMap  lowercase  int:tolower<br />
  345. <br />
  346. ## deal with normal documents first:<br />
  347. # allow Alias /icons/ to work - repeat for other aliases<br />
  348. RewriteCond  %{REQUEST_URI}  !^/icons/<br />
  349. # allow CGIs to work<br />
  350. RewriteCond  %{REQUEST_URI}  !^/cgi-bin/<br />
  351. # do the magic<br />
  352. RewriteRule  ^/(.*)$  /www/hosts/${lowercase:%{SERVER_NAME}}/docs/$1<br />
  353. <br />
  354. ## and now deal with CGIs - we have to force a MIME type<br />
  355. RewriteCond  %{REQUEST_URI}  ^/cgi-bin/<br />
  356. RewriteRule  ^/(.*)$  /www/hosts/${lowercase:%{SERVER_NAME}}/cgi-bin/$1  [T=application/x-httpd-cgi]<br />
  357. <br />
  358. # that's it!
  359. </example>
  360.  
  361. </section>
  362.  
  363. <section id="homepages.rewrite"><title>A
  364.     homepages system using <code>mod_rewrite</code></title>
  365.  
  366.     <p>This does the same thing as <a href="#homepages">the second
  367.     example</a>.</p>
  368.  
  369. <example>
  370. RewriteEngine on<br />
  371. <br />
  372. RewriteMap   lowercase  int:tolower<br />
  373. <br />
  374. # allow CGIs to work<br />
  375. RewriteCond  %{REQUEST_URI}  !^/cgi-bin/<br />
  376. <br />
  377. # check the hostname is right so that the RewriteRule works<br />
  378. RewriteCond  ${lowercase:%{SERVER_NAME}}  ^www\.[a-z-]+\.isp\.com$<br />
  379. <br />
  380. # concatenate the virtual host name onto the start of the URI<br />
  381. # the [C] means do the next rewrite on the result of this one<br />
  382. RewriteRule  ^(.+)  ${lowercase:%{SERVER_NAME}}$1  [C]<br />
  383. <br />
  384. # now create the real file name<br />
  385. RewriteRule  ^www\.([a-z-]+)\.isp\.com/(.*) /home/$1/$2<br />
  386. <br />
  387. # define the global CGI directory<br />
  388. ScriptAlias  /cgi-bin/  /www/std-cgi/
  389. </example>
  390.  
  391. </section>
  392.  
  393. <section id="xtra-conf"><title>Using a separate virtual
  394.     host configuration file</title>
  395.  
  396.     <p>This arrangement uses more advanced <code>mod_rewrite</code>
  397.     features to get the translation from virtual host to document
  398.     root from a separate configuration file. This provides more
  399.     flexibility but requires more complicated configuration.</p>
  400.  
  401.     <p>The <code>vhost.map</code> file contains something like
  402.     this:</p>
  403.  
  404. <example>
  405. www.customer-1.com  /www/customers/1<br />
  406. www.customer-2.com  /www/customers/2<br />
  407. # ...<br />
  408. www.customer-N.com  /www/customers/N<br />
  409. </example>
  410.  
  411.     <p>The <code>http.conf</code> contains this:</p>
  412.  
  413. <example>
  414. RewriteEngine on<br />
  415. <br />
  416. RewriteMap   lowercase  int:tolower<br />
  417. <br />
  418. # define the map file<br />
  419. RewriteMap   vhost      txt:/www/conf/vhost.map<br />
  420. <br />
  421. # deal with aliases as above<br />
  422. RewriteCond  %{REQUEST_URI}               !^/icons/<br />
  423. RewriteCond  %{REQUEST_URI}               !^/cgi-bin/<br />
  424. RewriteCond  ${lowercase:%{SERVER_NAME}}  ^(.+)$<br />
  425. # this does the file-based remap<br />
  426. RewriteCond  ${vhost:%1}                  ^(/.*)$<br />
  427. RewriteRule  ^/(.*)$                      %1/docs/$1<br />
  428. <br />
  429. RewriteCond  %{REQUEST_URI}               ^/cgi-bin/<br />
  430. RewriteCond  ${lowercase:%{SERVER_NAME}}  ^(.+)$<br />
  431. RewriteCond  ${vhost:%1}                  ^(/.*)$<br />
  432. RewriteRule  ^/(.*)$                      %1/cgi-bin/$1
  433. </example>
  434.  
  435. </section>
  436. </manualpage>
  437.