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 / F277647_configuring.xml < prev    next >
Extensible Markup Language  |  2004-09-04  |  9KB  |  199 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.5.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="configuring.xml.meta">
  23.  
  24.   <title>Configuration Files</title>
  25.  
  26. <summary>
  27. <p>This document describes the files used to configure the Apache
  28. HTTP server.</p>
  29. </summary>
  30.  
  31.   <section id="main">
  32.     <title>Main Configuration Files</title>
  33.     <related>
  34.       <modulelist>
  35.         <module>mod_mime</module>
  36.       </modulelist>
  37.       <directivelist>
  38.         <directive module="core" type="section">IfDefine</directive>
  39.         <directive module="core">Include</directive>
  40.         <directive module="mod_mime">TypesConfig</directive>
  41.       </directivelist>
  42.     </related>
  43.  
  44.     <p>Apache is configured by placing <a
  45.     href="mod/directives.html">directives</a> in plain text
  46.     configuration files. The main configuration file is usually called
  47.     <code>httpd.conf</code>. The location of this file is set at
  48.     compile-time, but may be overridden with the <code>-f</code>
  49.     command line flag. In addition, other configuration files may be
  50.     added using the <directive module="core">Include</directive>
  51.     directive, and wildcards can be used to include many configuration
  52.     files. Any directive may be placed in any of these configuration
  53.     files.  Changes to the main configuration files are only
  54.     recognized by Apache when it is started or restarted.</p>
  55.  
  56.     <p>The server also reads a file containing mime document types;
  57.     the filename is set by the <directive
  58.     module="mod_mime">TypesConfig</directive> directive,
  59.     and is <code>mime.types</code> by default.</p>
  60.   </section>
  61.  
  62.   <section id="syntax">
  63.     <title>Syntax of the Configuration Files</title>
  64.  
  65.     <p>Apache configuration files contain one directive per line.
  66.     The back-slash "\" may be used as the last character on a line
  67.     to indicate that the directive continues onto the next line.
  68.     There must be no other characters or white space between the
  69.     back-slash and the end of the line.</p>
  70.  
  71.     <p>Directives in the configuration files are case-insensitive,
  72.     but arguments to directives are often case sensitive. Lines
  73.     that begin with the hash character "#" are considered
  74.     comments, and are ignored. Comments may <strong>not</strong> be
  75.     included on a line after a configuration directive. Blank lines
  76.     and white space occurring before a directive are ignored, so
  77.     you may indent directives for clarity.</p>
  78.  
  79.     <p>You can check your configuration files for syntax errors
  80.     without starting the server by using <code>apachectl
  81.     configtest</code> or the <code>-t</code> command line
  82.     option.</p>
  83.   </section>
  84.  
  85.   <section id="modules">
  86.     <title>Modules</title>
  87.  
  88.     <related>
  89.       <modulelist>
  90.         <module>mod_so</module>
  91.       </modulelist>
  92.       <directivelist>
  93.         <directive module="core" type="section">IfModule</directive>
  94.         <directive module="mod_so">LoadModule</directive>
  95.       </directivelist>
  96.     </related>
  97.  
  98.     <p>Apache is a modular server. This implies that only the most
  99.     basic functionality is included in the core server. Extended
  100.     features are available through <a
  101.     href="mod/">modules</a> which can be loaded
  102.     into Apache. By default, a <a
  103.     href="mod/module-dict.html#Status">base</a> set of modules is
  104.     included in the server at compile-time. If the server is
  105.     compiled to use <a href="dso.html">dynamically loaded</a>
  106.     modules, then modules can be compiled separately and added at
  107.     any time using the <directive module="mod_so">LoadModule</directive>
  108.     directive.
  109.     Otherwise, Apache must be recompiled to add or remove modules.
  110.     Configuration directives may be included conditional on a
  111.     presence of a particular module by enclosing them in an <directive
  112.     module="core" type="section">IfModule</directive> block.</p>
  113.  
  114.     <p>To see which modules are currently compiled into the server,
  115.     you can use the <code>-l</code> command line option.</p>
  116.   </section>
  117.  
  118.   <section id="scope">
  119.     <title>Scope of Directives</title>
  120.  
  121.     <related>
  122.       <directivelist>
  123.         <directive module="core" type="section">Directory</directive>
  124.         <directive module="core" type="section">DirectoryMatch</directive>
  125.         <directive module="core" type="section">Files</directive>
  126.         <directive module="core" type="section">FilesMatch</directive>
  127.         <directive module="core" type="section">Location</directive>
  128.         <directive module="core" type="section">LocationMatch</directive>
  129.         <directive module="core" type="section">VirtualHost</directive>
  130.       </directivelist>
  131.     </related>
  132.  
  133.     <p>Directives placed in the main configuration files apply to
  134.     the entire server. If you wish to change the configuration for
  135.     only a part of the server, you can scope your directives by
  136.     placing them in <directive module="core"
  137.     type="section">Directory</directive>, <directive module="core"
  138.     type="section">DirectoryMatch</directive>, <directive module="core"
  139.     type="section">Files</directive>, <directive module="core"
  140.     type="section">FilesMatch</directive>, <directive module="core"
  141.     type="section">Location</directive>, and <directive module="core"
  142.     type="section">LocationMatch</directive>
  143.     sections. These sections limit the application of the
  144.     directives which they enclose to particular filesystem
  145.     locations or URLs. They can also be nested, allowing for very
  146.     fine grained configuration.</p>
  147.  
  148.     <p>Apache has the capability to serve many different websites
  149.     simultaneously. This is called <a href="vhosts/">Virtual
  150.     Hosting</a>. Directives can also be scoped by placing them
  151.     inside <directive module="core" type="section">VirtualHost</directive>
  152.     sections, so that they will only apply to requests for a
  153.     particular website.</p>
  154.  
  155.     <p>Although most directives can be placed in any of these
  156.     sections, some directives do not make sense in some contexts.
  157.     For example, directives controlling process creation can only
  158.     be placed in the main server context. To find which directives
  159.     can be placed in which sections, check the <a
  160.     href="mod/directive-dict.html#Context">Context</a> of the
  161.     directive. For further information, we provide details on <a
  162.     href="sections.html">How Directory, Location and Files sections
  163.     work</a>.</p>
  164.   </section>
  165.  
  166.   <section id="htaccess">
  167.     <title>.htaccess Files</title>
  168.  
  169.     <related>
  170.       <directivelist>
  171.         <directive module="core">AccessFileName</directive>
  172.         <directive module="core">AllowOverride</directive>
  173.       </directivelist>
  174.     </related>
  175.  
  176.     <p>Apache allows for decentralized management of configuration
  177.     via special files placed inside the web tree. The special files
  178.     are usually called <code>.htaccess</code>, but any name can be
  179.     specified in the <directive module="core">AccessFileName</directive>
  180.     directive. Directives placed in <code>.htaccess</code> files
  181.     apply to the directory where you place the file, and all
  182.     sub-directories. The <code>.htaccess</code> files follow the
  183.     same syntax as the main configuration files. Since
  184.     <code>.htaccess</code> files are read on every request, changes
  185.     made in these files take immediate effect.</p>
  186.  
  187.     <p>To find which directives can be placed in
  188.     <code>.htaccess</code> files, check the <a
  189.     href="mod/directive-dict.html#Context">Context</a> of the
  190.     directive. The server administrator further controls what
  191.     directives may be placed in <code>.htaccess</code> files by
  192.     configuring the <directive module="core">AllowOverride</directive>
  193.     directive in the main configuration files.</p>
  194.  
  195.     <p>For more information on <code>.htaccess</code> files, see
  196.     the <a href="howto/htaccess.html">.htaccess tutorial</a>.</p>
  197.   </section>
  198. </manualpage>
  199.