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