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