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 / F233093_examples.xml < prev    next >
Extensible Markup Language  |  2002-11-10  |  20KB  |  593 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>VirtualHost Examples</title>
  9.  
  10. <summary>
  11.  
  12.     <p>This document attempts to answer the commonly-asked questions about
  13.     setting up virtual hosts. These scenarios are those involving multiple
  14.     web sites running on a single server, via <a
  15.     href="name-based.html">name-based</a> or <a
  16.     href="ip-based.html">IP-based</a> virtual hosts. A document should be
  17.     coming soon about running sites on several servers behind a single
  18.     proxy server.</p>
  19.  
  20. </summary>
  21.  
  22.   <section id="purename"><title>Running several name-based web
  23.     sites on a single IP address.</title>
  24.  
  25.     <p>Your server has a single IP address, and multiple aliases (CNAMES)
  26.     point to this machine in DNS. You want to run a web server for
  27.     <code>www.example1.com</code> and <code>www.example2.org</code> on this
  28.     machine.</p>
  29.  
  30.     <note><title>Note</title><p>Creating virtual
  31.           host configurations on your Apache server does not magically
  32.           cause DNS entries to be created for those host names. You
  33.           <em>must</em> have the names in DNS, resolving to your IP
  34.           address, or nobody else will be able to see your web site. You
  35.           can put entries in your <code>hosts</code> file for local
  36.           testing, but that will work only from the machine with those
  37.           hosts entries.</p>
  38.     </note>
  39.  
  40.     <example>
  41.     <title>Server configuration</title>
  42.  
  43.     # Ensure that Apache listens on port 80<br />
  44.     Listen 80<br />
  45.     <br />
  46.     # Listen for virtual host requests on all IP addresses<br />
  47.     NameVirtualHost *<br />
  48.     <br />
  49.     <VirtualHost *><br />
  50.     <indent>
  51.       DocumentRoot /www/example1<br />
  52.       ServerName www.example1.com<br />
  53.       <br />
  54.       # Other directives here<br />
  55.       <br />
  56.     </indent>
  57.     </VirtualHost><br />
  58.     <br />
  59.     <VirtualHost *><br />
  60.     <indent>
  61.       DocumentRoot /www/example2<br />
  62.       ServerName www.example2.org<br />
  63.       <br />
  64.       # Other directives here<br />
  65.       <br />
  66.     </indent>
  67.     </VirtualHost>
  68.     </example>
  69.  
  70.     <p>The asterisks match all addresses, so the main server serves no
  71.     requests. Due to the fact that <code>www.example1.com</code> is first
  72.     in the configuration file, it has the highest priority and can be seen
  73.     as the <cite>default</cite> or <cite>primary</cite> server. That means
  74.     that if a request is received that does not match one of the specified
  75.     <code>ServerName</code> directives, it will be served by this first
  76.     <code>VirtualHost</code>.</p>
  77.  
  78.     <note>
  79.             <title>Note</title>
  80.  
  81.             <p>You can, if you wish, replace <code>*</code> with the actual
  82.             IP address of the system. In that case, the argument to
  83.             <code>VirtualHost</code> <em>must</em> match the argument to
  84.             <code>NameVirtualHost</code>:</p>
  85.  
  86.             <example>
  87.             NameVirtualHost 172.20.30.40<br />
  88.                         <br />
  89.             <VirtualHost 172.20.30.40><br />
  90.                  # etc ...
  91.             </example>
  92.  
  93.            <p>However, it is additionally useful to use <code>*</code>
  94.            on systems where the IP address is not predictable - for
  95.            example if you have a dynamic IP address with your ISP, and
  96.            you are using some variety of dynamic DNS solution. Since
  97.            <code>*</code> matches any IP address, this configuration
  98.            would work without changes whenever your IP address
  99.            changes.</p>
  100.     </note>
  101.  
  102.     <p>The above configuration is what you will want to use in almost
  103.     all name-based virtual hosting situations. The only think that this
  104.     configuration will not work for, in fact, is when you are serving
  105.     different content based on differing IP addresses or ports.</p>
  106.  
  107.     </section>
  108.  
  109.     <section id="twoips"><title>Name-based hosts on more than one
  110.     IP address.</title>
  111.  
  112.       <note>
  113.           <title>Note</title><p>Any of the
  114.           techniques discussed here can be extended to any number of IP
  115.           addresses.</p>
  116.     </note>
  117.  
  118.     <p>The server has two IP addresses. On one (<code>172.20.30.40</code>), we
  119.     will serve the "main" server, <code>server.domain.com</code> and on the
  120.     other (<code>172.20.30.50</code>), we will serve two or more virtual hosts.</p>
  121.  
  122.     <example>
  123.     <title>Server configuration</title>
  124.  
  125.     Listen 80<br />
  126.         <br />
  127.     # This is the "main" server running on 172.20.30.40<br />
  128.     ServerName server.domain.com<br />
  129.     DocumentRoot /www/mainserver<br />
  130.         <br />
  131.     # This is the other address<br />
  132.     NameVirtualHost 172.20.30.50<br />
  133.         <br />
  134.     <VirtualHost 172.20.30.50><br />
  135.     <indent>
  136.         DocumentRoot /www/example1<br />
  137.         ServerName www.example1.com<br />
  138.                <br />
  139.         # Other directives here ...<br />
  140.                 <br />
  141.     </indent>
  142.     </VirtualHost><br />
  143.         <br />
  144.     <VirtualHost 172.20.30.50><br />
  145.     <indent>
  146.         DocumentRoot /www/example2<br />
  147.         ServerName www.example2.org<br />
  148.                 <br />
  149.         # Other directives here ...<br />
  150.                 <br />
  151.     </indent>
  152.     </VirtualHost>
  153.     </example>
  154.  
  155.     <p>Any request to an address other than <code>172.20.30.50</code> will be
  156.     served from the main server. A request to <code>172.20.30.50</code> with an
  157.     unknown hostname, or no <code>Host:</code> header, will be served from
  158.     <code>www.example1.com</code>.</p>
  159.  
  160.     </section>
  161.  
  162.     <section id="intraextra"><title>Serving the same content on
  163.     different IP addresses (such as an internal and external
  164.     address).</title>
  165.  
  166.     <p>The server machine has two IP addresses (<code>192.168.1.1</code>
  167.     and <code>172.20.30.40</code>). The machine is sitting between an
  168.     internal (intranet) network and an external (internet) network. Outside
  169.     of the network, the name <code>server.example.com</code> resolves to
  170.     the external address (<code>172.20.30.40</code>), but inside the
  171.     network, that same name resolves to the internal address
  172.     (<code>192.168.1.1</code>).</p>
  173.  
  174.     <p>The server can be made to respond to internal and external requests
  175.     with the same content, with just one <code>VirtualHost</code>
  176.     section.</p>
  177.  
  178.     <example>
  179.     <title>Server configuration</title>
  180.  
  181.     NameVirtualHost 192.168.1.1<br />
  182.     NameVirtualHost 172.20.30.40<br />
  183.         <br />
  184.     <VirtualHost 192.168.1.1 172.20.30.40><br />
  185.     <indent>
  186.         DocumentRoot /www/server1<br />
  187.         ServerName server.example.com<br />
  188.         ServerAlias server<br />
  189.     </indent>
  190.     </VirtualHost>
  191.     </example>
  192.  
  193.     <p>Now requests from both networks will be served from the same
  194.     <code>VirtualHost</code>.</p>
  195.  
  196.     <note>
  197.           <title>Note:</title><p>On the internal
  198.           network, one can just use the name <code>server</code> rather
  199.           than the fully qualified host name
  200.           <code>server.example.com</code>.</p>
  201.  
  202.           <p>Note also that, in the above example, you can replace the list
  203.           of IP addresses with <code>*</code>, which will cause the server to
  204.           respond the same on all addresses.</p>
  205.     </note>
  206.  
  207.     </section>
  208.  
  209.     <section id="port"><title>Running different sites on different
  210.     ports.</title>
  211.  
  212.     <p>You have multiple domains going to the same IP and also want to
  213.     serve multiple ports. By defining the ports in the "NameVirtualHost"
  214.     tag, you can allow this to work. If you try using <VirtualHost
  215.     name:port> without the NameVirtualHost name:port or you try to use
  216.     the Listen directive, your configuration will not work.</p>
  217.  
  218.     <example>
  219.     <title>Server configuration</title>
  220.  
  221.     Listen 80<br />
  222.     Listen 8080<br />
  223.         <br />
  224.     NameVirtualHost 172.20.30.40:80<br />
  225.     NameVirtualHost 172.20.30.40:8080<br />
  226.         <br />
  227.     <VirtualHost 172.20.30.40:80><br />
  228.     <indent>
  229.         ServerName www.example1.com<br />
  230.         DocumentRoot /www/domain-80<br />
  231.     </indent>
  232.     </VirtualHost><br />
  233.         <br />
  234.     <VirtualHost 172.20.30.40:8080><br />
  235.     <indent>
  236.         ServerName www.example1.com<br />
  237.         DocumentRoot /www/domain-8080<br />
  238.     </indent>
  239.     </VirtualHost><br />
  240.         <br />
  241.     <VirtualHost 172.20.30.40:80><br />
  242.     <indent>
  243.         ServerName www.example2.org<br />
  244.         DocumentRoot /www/otherdomain-80<br />
  245.     </indent>
  246.     </VirtualHost><br />
  247.         <br />
  248.     <VirtualHost 172.20.30.40:8080><br />
  249.     <indent>
  250.         ServerName www.example2.org<br />
  251.         DocumentRoot /www/otherdomain-8080<br />
  252.     </indent>
  253.     </VirtualHost>
  254.     </example>
  255.  
  256.     </section>
  257.  
  258.     <section id="ip"><title>IP-based virtual hosting</title>
  259.  
  260.     <p>The server has two IP addresses (<code>172.20.30.40</code> and
  261.     <code>172.20.30.50</code>) which resolve to the names
  262.     <code>www.example1.com</code> and <code>www.example2.org</code>
  263.     respectively.</p>
  264.  
  265.     <example>
  266.     <title>Server configuration</title>
  267.  
  268.     Listen 80<br />
  269.         <br />
  270.     <VirtualHost 172.20.30.40><br />
  271.     <indent>
  272.         DocumentRoot /www/example1<br />
  273.         ServerName www.example1.com<br />
  274.     </indent>
  275.     </VirtualHost><br />
  276.         <br />
  277.     <VirtualHost 172.20.30.50><br />
  278.     <indent>
  279.         DocumentRoot /www/example2<br />
  280.         ServerName www.example2.org<br />
  281.     </indent>
  282.     </VirtualHost>
  283.     </example>
  284.  
  285.     <p>Requests for any address not specified in one of the
  286.     <code><VirtualHost></code> directives (such as
  287.     <code>localhost</code>, for example) will go to the main server, if
  288.     there is one.</p>
  289.  
  290.     </section>
  291.  
  292.     <section id="ipport"><title>Mixed port-based and ip-based virtual
  293.     hosts</title>
  294.  
  295.     <p>The server machine has two IP addresses (<code>172.20.30.40</code> and
  296.     <code>172.20.30.50</code>) which resolve to the names
  297.     <code>www.example1.com</code> and <code>www.example2.org</code>
  298.     respectively. In each case, we want to run hosts on ports 80 and
  299.     8080.</p>
  300.  
  301.     <example>
  302.     <title>Server configuration</title>
  303.  
  304.     Listen 172.20.30.40:80<br />
  305.     Listen 172.20.30.40:8080<br />
  306.     Listen 172.20.30.50:80<br />
  307.     Listen 172.20.30.50:8080<br />
  308.         <br />
  309.     <VirtualHost 172.20.30.40:80><br />
  310.     <indent>
  311.         DocumentRoot /www/example1-80<br />
  312.         ServerName www.example1.com<br />
  313.     </indent>
  314.     </VirtualHost><br />
  315.         <br />
  316.     <VirtualHost 172.20.30.40:8080><br />
  317.     <indent>
  318.         DocumentRoot /www/example1-8080<br />
  319.         ServerName www.example1.com<br />
  320.         </indent>
  321.     </VirtualHost><br />
  322.         <br />
  323.     <VirtualHost 172.20.30.50:80><br />
  324.     <indent>
  325.         DocumentRoot /www/example2-80<br />
  326.         ServerName www.example1.org<br />
  327.     </indent>
  328.     </VirtualHost><br />
  329.         <br />
  330.     <VirtualHost 172.20.30.50:8080><br />
  331.     <indent>
  332.         DocumentRoot /www/example2-8080<br />
  333.         ServerName www.example2.org<br />
  334.     </indent>
  335.     </VirtualHost>
  336.     </example>
  337.  
  338.     </section>
  339.  
  340.     <section id="mixed"><title>Mixed name-based and IP-based
  341.     vhosts</title>
  342.  
  343.     <p>On some of my addresses, I want to do name-based virtual hosts, and
  344.     on others, IP-based hosts.</p>
  345.  
  346.     <example>
  347.     <title>Server configuration</title>
  348.  
  349.     Listen 80<br />
  350.         <br />
  351.     NameVirtualHost 172.20.30.40<br />
  352.         <br />
  353.     <VirtualHost 172.20.30.40><br />
  354.     <indent>
  355.         DocumentRoot /www/example1<br />
  356.         ServerName www.example1.com<br />
  357.     </indent>
  358.     </VirtualHost><br />
  359.         <br />
  360.     <VirtualHost 172.20.30.40><br />
  361.     <indent>
  362.         DocumentRoot /www/example2<br />
  363.         ServerName www.example2.org<br />
  364.     </indent>
  365.     </VirtualHost><br />
  366.         <br />
  367.     <VirtualHost 172.20.30.40><br />
  368.     <indent>
  369.         DocumentRoot /www/example3<br />
  370.         ServerName www.example3.net<br />
  371.     </indent>
  372.     </VirtualHost><br />
  373.         <br />
  374.     # IP-based<br />
  375.     <VirtualHost 172.20.30.50><br />
  376.     <indent>
  377.         DocumentRoot /www/example4<br />
  378.         ServerName www.example4.edu<br />
  379.     </indent>
  380.     </VirtualHost><br />
  381.         <br />
  382.     <VirtualHost 172.20.30.60><br />
  383.     <indent>
  384.         DocumentRoot /www/example5<br />
  385.         ServerName www.example5.gov<br />
  386.     </indent>
  387.     </VirtualHost>
  388.     </example>
  389.  
  390.     </section>
  391.  
  392.     <section id="default"><title>Using <code>_default_</code>
  393.     vhosts</title>
  394.  
  395.       <section id="defaultallports"><title><code>_default_</code> vhosts
  396.     for all ports</title>
  397.  
  398.     <p>Catching <em>every</em> request to any unspecified IP address and
  399.     port, <em>i.e.</em>, an address/port combination that is not used for
  400.     any other virtual host.</p>
  401.  
  402.     <example>
  403.     <title>Server configuration</title>
  404.  
  405.     <VirtualHost _default_:*><br />
  406.     <indent>
  407.         DocumentRoot /www/default<br />
  408.     </indent>
  409.     </VirtualHost>
  410.     </example>
  411.  
  412.     <p>Using such a default vhost with a wildcard port effectively prevents
  413.     any request going to the main server.</p>
  414.  
  415.     <p>A default vhost never serves a request that was sent to an
  416.     address/port that is used for name-based vhosts. If the request
  417.     contained an unknown or no <code>Host:</code> header it is always
  418.     served from the primary name-based vhost (the vhost for that
  419.     address/port appearing first in the configuration file).</p>
  420.  
  421.     <p>You can use <directive module="mod_alias">AliasMatch</directive> or
  422.     <directive module="mod_rewrite">RewriteRule</directive> to rewrite any
  423.     request to a single information page (or script).</p>
  424.     </section>
  425.  
  426.     <section id="defaultdifferentports"><title><code>_default_</code> vhosts
  427.     for different ports</title>
  428.  
  429.     <p>Same as setup 1, but the server listens on several ports and we want
  430.     to use a second <code>_default_</code> vhost for port 80.</p>
  431.  
  432.     <example>
  433.     <title>Server configuration</title>
  434.  
  435.     <VirtualHost _default_:80><br />
  436.     <indent>
  437.         DocumentRoot /www/default80<br />
  438.         # ...<br />
  439.     </indent>
  440.     </VirtualHost><br />
  441.         <br />
  442.     <VirtualHost _default_:*><br />
  443.     <indent>
  444.         DocumentRoot /www/default<br />
  445.         # ...<br />
  446.     </indent>
  447.     </VirtualHost>
  448.     </example>
  449.  
  450.     <p>The default vhost for port 80 (which <em>must</em> appear before any
  451.     default vhost with a wildcard port) catches all requests that were sent
  452.     to an unspecified IP address. The main server is never used to serve a
  453.     request.</p>
  454.     </section>
  455.  
  456.     <section id="defaultoneport"><title><code>_default_</code> vhosts
  457.     for one port</title>
  458.  
  459.     <p>We want to have a default vhost for port 80, but no other default
  460.     vhosts.</p>
  461.  
  462.     <example>
  463.     <title>Server configuration</title>
  464.  
  465.     <VirtualHost _default_:80><br />
  466.     DocumentRoot /www/default<br />
  467.     ...<br />
  468.     </VirtualHost>
  469.     </example>
  470.  
  471.     <p>A request to an unspecified address on port 80 is served from the
  472.     default vhost any other request to an unspecified address and port is
  473.     served from the main server.</p>
  474.     </section>
  475.  
  476.     </section>
  477.  
  478.     <section id="migrate"><title>Migrating a name-based vhost to an
  479.     IP-based vhost</title>
  480.  
  481.     <p>The name-based vhost with the hostname
  482.     <code>www.example2.org</code> (from our <a
  483.     href="#name">name-based</a> example, setup 2) should get its own IP
  484.     address. To avoid problems with name servers or proxies who cached the
  485.     old IP address for the name-based vhost we want to provide both
  486.     variants during a migration phase.<br />
  487.      The solution is easy, because we can simply add the new IP address
  488.     (<code>172.20.30.50</code>) to the <code>VirtualHost</code>
  489.     directive.</p>
  490.  
  491.     <example>
  492.     <title>Server configuration</title>
  493.  
  494.     Listen 80<br />
  495.     ServerName www.example1.com<br />
  496.     DocumentRoot /www/example1<br />
  497.         <br />
  498.     NameVirtualHost 172.20.30.40<br />
  499.         <br />
  500.     <VirtualHost 172.20.30.40 172.20.30.50><br />
  501.     <indent>
  502.         DocumentRoot /www/example2<br />
  503.         ServerName www.example2.org<br />
  504.         # ...<br />
  505.     </indent>
  506.     </VirtualHost><br />
  507.         <br />
  508.     <VirtualHost 172.20.30.40><br />
  509.     <indent>
  510.         DocumentRoot /www/example3<br />
  511.         ServerName www.example3.net<br />
  512.         ServerAlias *.example3.net<br />
  513.         # ...<br />
  514.     </indent>
  515.     </VirtualHost>
  516.     </example>
  517.  
  518.     <p>The vhost can now be accessed through the new address (as an
  519.     IP-based vhost) and through the old address (as a name-based
  520.     vhost).</p>
  521.  
  522.     </section>
  523.  
  524.     <section id="serverpath"><title>Using the <code>ServerPath</code>
  525.     directive</title>
  526.  
  527.     <p>We have a server with two name-based vhosts. In order to match the
  528.     correct virtual host a client must send the correct <code>Host:</code>
  529.     header. Old HTTP/1.0 clients do not send such a header and Apache has
  530.     no clue what vhost the client tried to reach (and serves the request
  531.     from the primary vhost). To provide as much backward compatibility as
  532.     possible we create a primary vhost which returns a single page
  533.     containing links with an URL prefix to the name-based virtual
  534.     hosts.</p>
  535.  
  536.     <example>
  537.     <title>Server configuration</title>
  538.  
  539.     NameVirtualHost 172.20.30.40<br />
  540.         <br />
  541.     <VirtualHost 172.20.30.40><br />
  542.     <indent>
  543.         # primary vhost<br />
  544.         DocumentRoot /www/subdomain<br />
  545.         RewriteEngine On<br />
  546.         RewriteRule ^/.* /www/subdomain/index.html<br />
  547.         # ...<br />
  548.     </indent>
  549.     </VirtualHost><br />
  550.         <br />
  551.     <VirtualHost 172.20.30.40><br />
  552.     DocumentRoot /www/subdomain/sub1<br />
  553.     <indent>
  554.         ServerName www.sub1.domain.tld<br />
  555.         ServerPath /sub1/<br />
  556.         RewriteEngine On<br />
  557.         RewriteRule ^(/sub1/.*) /www/subdomain$1<br />
  558.         # ...<br />
  559.     </indent>
  560.     </VirtualHost><br />
  561.         <br />
  562.     <VirtualHost 172.20.30.40><br />
  563.     <indent>
  564.         DocumentRoot /www/subdomain/sub2<br />
  565.         ServerName www.sub2.domain.tld<br />
  566.         ServerPath /sub2/<br />
  567.         RewriteEngine On<br />
  568.         RewriteRule ^(/sub2/.*) /www/subdomain$1<br />
  569.         # ...<br />
  570.     </indent>
  571.     </VirtualHost>
  572.     </example>
  573.  
  574.     <p>Due to the <directive module="core">ServerPath</directive>
  575.     directive a request to the URL
  576.     <code>http://www.sub1.domain.tld/sub1/</code> is <em>always</em> served
  577.     from the sub1-vhost.<br /> A request to the URL
  578.     <code>http://www.sub1.domain.tld/</code> is only
  579.     served from the sub1-vhost if the client sent a correct
  580.     <code>Host:</code> header. If no <code>Host:</code> header is sent the
  581.     client gets the information page from the primary host.<br />
  582.      Please note that there is one oddity: A request to
  583.     <code>http://www.sub2.domain.tld/sub1/</code> is also served from the
  584.     sub1-vhost if the client sent no <code>Host:</code> header.<br />
  585.      The <directive module="mod_rewrite">RewriteRule</directive> directives
  586.     are used to make sure that a client which sent a correct
  587.     <code>Host:</code> header can use both URL variants, <em>i.e.</em>,
  588.     with or without URL prefix.</p>
  589.  
  590.     </section>
  591.  
  592. </manualpage>
  593.