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