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 / F232693_sections.xml < prev    next >
Extensible Markup Language  |  2002-09-02  |  19KB  |  474 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.  
  8. <title>Configuration Sections</title>
  9.  
  10. <summary> <p>Directives in the <a
  11. href="configuring.html">configuration files</a> may apply to the
  12. entire server, or they may be restricted to apply only to particular
  13. directories, files, hosts, or URLs.  This document describes how to
  14. use configuration section containers or <code>.htaccess</code> files
  15. to change the scope of other configuration directives.</p>
  16. </summary>
  17.  
  18. <section id="types"><title>Types of Configuration Section Containers</title>
  19.  
  20. <related>
  21. <modulelist>
  22. <module>core</module>
  23. <module>mod_proxy</module>
  24. </modulelist>
  25. <directivelist>
  26. <directive type="section" module="core">Directory</directive>
  27. <directive type="section" module="core">DirectoryMatch</directive>
  28. <directive type="section" module="core">Files</directive>
  29. <directive type="section" module="core">FilesMatch</directive>
  30. <directive type="section" module="core">IfDefine</directive>
  31. <directive type="section" module="core">IfModule</directive>
  32. <directive type="section" module="core">Location</directive>
  33. <directive type="section" module="core">LocationMatch</directive>
  34. <directive type="section" module="mod_proxy">Proxy</directive>
  35. <directive type="section" module="mod_proxy">ProxyMatch</directive>
  36. <directive type="section" module="core">VirtualHost</directive>
  37. </directivelist>
  38. </related>
  39.  
  40. <p>There are two basic types of containers.  Most containers are
  41. evaluated for each request.  The enclosed directives are applied only
  42. for those requests that match the containers.  The <directive
  43. type="section" module="core">IfDefine</directive> and <directive
  44. type="section" module="core">IfModule</directive> containers, on the
  45. other hand, are evaluated only at server startup and restart.  If
  46. their conditions are true at startup, then the enclosed directives
  47. will apply to all requests.  If the conditions are not true, the
  48. enclosed directives will be ignored.</p>
  49.  
  50. <p>The <directive type="section" module="core">IfDefine</directive> directive
  51. encloses directives that will only be applied if an appropriate
  52. parameter is defined on the <code>httpd</code> command line.  For example,
  53. with the following configuration, all requests will be redirected
  54. to another site only if the server is started using
  55. <code>httpd -DClosedForNow</code>:</p>
  56.  
  57. <example>
  58. <IfDefine ClosedForNow><br />
  59. Redirect / http://otherserver.example.com/<br />
  60. </IfDefine>
  61. </example>
  62.  
  63. <p>The <directive type="section" module="core">IfModule</directive>
  64. directive is very similar, except it encloses directives that will
  65. only be applied if a particular module is available in the server.
  66. The module must either be statically compiled in the server, or it
  67. must be dynamically compiled and its <directive
  68. module="mod_so">LoadModule</directive> line must be earlier in the
  69. configuration file.  This directive should only be used if you need
  70. your configuration file to work whether or not certain modules are
  71. installed.  It should not be used to enclose directives that you want
  72. to work all the time, because it can suppress useful error messages
  73. about missing modules.</p>
  74.  
  75. <p>In the following example, the <directive
  76. module="mod_mime_magic">MimeMagicFiles</directive> directive will be
  77. applied only if <module>mod_mime_magic</module> is available.</p>
  78.  
  79. <example>
  80. <IfModule mod_mime_magic.c><br />
  81. MimeMagicFile conf/magic<br />
  82. </IfModule>
  83. </example>
  84.  
  85. <p>Both <directive type="section" module="core">IfDefine</directive>
  86. and <directive type="section" module="core">IfModule</directive>
  87. can apply negative conditions by preceding their test with "!".
  88. Also, these sections can be nested to achieve more complex
  89. restrictions.</p>
  90. </section>
  91.  
  92. <section id="file-and-web"><title>Filesystem and Webspace</title>
  93.  
  94. <p>The most commonly used configuration section containers are the
  95. ones that change the configuration of particular places in the
  96. filesystem or webspace.  First, it is important to understand the
  97. difference between the two.  The filesystem is the view of your disks
  98. as seen by your operating system.  For example, in a default install,
  99. Apache resides at <code>/usr/local/apache2</code> in the Unix
  100. filesystem or <code>"c:/Program Files/Apache Group/Apache2"</code> in
  101. the Windows filesystem.  (Note that forward slashes should always be
  102. used as the path separator in Apache, even for Windows.)  In contrast,
  103. the webspace is the view of your site as delivered by the web server
  104. and seen by the client.  So the path <code>/dir/</code> in the
  105. webspace corresponds to the path
  106. <code>/usr/local/apache2/htdocs/dir/</code> in the filesystem of a
  107. default Apache install on Unix.  The webspace need not map directly to
  108. the filesystem, since webpages may be generated dynamically
  109. from databases or other locations.</p>
  110.  
  111. <section id="filesystem"><title>Filesystem Containers</title>
  112.  
  113. <p>The <directive type="section" module="core">Directory</directive>
  114. and <directive type="section" module="core">Files</directive>
  115. directives, along with their regex counterparts, apply directives to
  116. parts of the filesystem.  Directives enclosed in a <directive
  117. type="section" module="core">Directory</directive> section apply to
  118. the named filesystem directory and all subdirectories of that
  119. directory.  The same effect can be obtained using <a
  120. href="howto/htaccess.html">.htaccess files</a>.  For example, in the
  121. following configuration, directory indexes will be enabled for the
  122. <code>/var/web/dir1</code> directory and all subdirectories.</p>
  123.  
  124. <example>
  125. <Directory /var/web/dir1><br />
  126. Options +Indexes<br />
  127. </Directory>
  128. </example>
  129.  
  130. <p>Directives enclosed in a <directive type="section"
  131. module="core">Files</directive> section apply to any file with
  132. the specified name, regardless of what directory it lies in.
  133. So for example, the following configuration directives will,
  134. when placed in the main section of the configuration file,
  135. deny access to any file named <code>private.html</code> regardless
  136. of where it is found.</p>
  137.  
  138. <example>
  139. <Files private.html><br />
  140. Order allow,deny<br />
  141. Deny from all<br />
  142. </Files>
  143. </example>
  144.  
  145. <p>To address files found in a particular part of the filesystem, the
  146. <directive type="section" module="core">Files</directive> and
  147. <directive type="section" module="core">Directory</directive> sections
  148. can be combined.  For example, the following configuration will deny
  149. access to <code>/var/web/dir1/private.html</code>,
  150. <code>/var/web/dir1/subdir2/private.html</code>,
  151. <code>/var/web/dir1/subdir3/private.html</code>, and any other instance
  152. of <code>private.html</code> found under the <code>/var/web/dir1/</code>
  153. directory.</p>
  154.  
  155. <example>
  156. <Directory /var/web/dir1><br />
  157. <Files private.html><br />
  158. Order allow,deny<br />
  159. Deny from all<br />
  160. </Files><br />
  161. </Directory>
  162. </example>
  163. </section>
  164.  
  165. <section id="webspace"><title>Webspace Containers</title>
  166.  
  167. <p>The <directive type="section" module="core">Location</directive>
  168. directive and its regex counterpart, on the other hand, change the
  169. configuration for content in the webspace.  For example, the following
  170. configuration prevents access to any URL-path that begins in /private.
  171. In particular, it will apply to requests for
  172. <code>http://yoursite.example.com/private</code>,
  173. <code>http://yoursite.example.com/private123</code>, and
  174. <code>http://yoursite.example.com/private/dir/file.html</code> as well
  175. as any other requests starting with the <code>/private</code> string.</p>
  176.  
  177. <example>
  178. <Location /private><br />
  179. Order Allow,Deny<br />
  180. Deny from all<br />
  181. </Location>
  182. </example>
  183.  
  184. <p>The <directive type="section" module="core">Location</directive>
  185. directive need not have anything to do with the filesystem.
  186. For example, the following example shows how to map a particular
  187. URL to an internal Apache handler provided by <module>mod_status</module>.
  188. No file called <code>server-status</code> needs to exist in the
  189. filesystem.</p>
  190.  
  191. <example>
  192. <Location /server-status><br />
  193. SetHandler server-status<br />
  194. </Location>
  195. </example>
  196. </section>
  197.  
  198. <section id="wildcards"><title>Wildcards and Regular Expressions</title>
  199.  
  200. <p>The <directive type="section" module="core">Directory</directive>,
  201. <directive type="section" module="core">Files</directive>, and
  202. <directive type="section" module="core">Location</directive>
  203. directives can each use shell-style wildcard characters as in
  204. <code>fnmatch</code> from the C standard library.  The character "*"
  205. matches any sequence of characters, "?" matches any single character,
  206. and "[<em>seq</em>]" matches any character in <em>seq</em>.  The "/"
  207. character will not be matched by any wildcard; it must be specified
  208. explictly.</p>
  209.  
  210. <p>If even more flexible matching is required, each
  211. container has a regular-expression (regex) counterpart <directive
  212. type="section" module="core">DirectoryMatch</directive>, <directive
  213. type="section" module="core">FilesMatch</directive>, and <directive
  214. type="section" module="core">LocationMatch</directive> that allow
  215. perl-compatible
  216. <a href="glossary.html#regex">regular expressions</a>
  217. to be used in choosing the matches.  But see the section below on
  218. configuration merging to find out how using regex sections will change
  219. how directives are applied.</p>
  220.  
  221. <p>A non-regex wildcard section that changes the configuration of
  222. all user directories could look as follows:</p>
  223.  
  224. <example>
  225. <Directory /home/*/public_html><br />
  226. Options Indexes<br />
  227. </Directory>
  228. </example>
  229.  
  230. <p>Using regex sections, we can deny access to many types of image files
  231. at once:</p>
  232. <example>
  233. <FilesMatch \.(?i:gif|jpe?g|png)$><br />
  234. Order allow,deny<br />
  235. Deny from all<br />
  236. </FilesMatch>
  237. </example>
  238.  
  239. </section>
  240.  
  241. <section id="whichwhen"><title>What to use When</title>
  242.  
  243. <p>Choosing between filesystem containers and webspace containers is
  244. actually quite easy.  When applying directives to objects that reside
  245. in the filesystem always use <directive type="section"
  246. module="core">Directory</directive> or <directive type="section"
  247. module="core">Files</directive>.  When applying directives to objects
  248. that do not reside in the filesystem (such as a webpage generated from
  249. a database), use <directive type="section"
  250. module="core">Location</directive>.</p>
  251.  
  252. <p>It is important to never use <directive type="section"
  253. module="core">Location</directive> when trying to restrict
  254. access to objects in the filesystem.  This is because many
  255. different webspace locations (URLs) could map to the same filesystem
  256. location, allowing your restrictions to be circumvented.
  257. For example, consider the following configuration:</p>
  258.  
  259. <example>
  260. <Location /dir/><br />
  261. Order allow,deny<br />
  262. Deny from all<br />
  263. </Location>
  264. </example>
  265.  
  266. <p>This works fine if the request is for
  267. <code>http://yoursite.example.com/dir/</code>.  But what if you are on
  268. a case-insensitive filesystem?  Then your restriction could be easily
  269. circumvented by requesting
  270. <code>http://yoursite.example.com/DIR/</code>.  The <directive
  271. type="section" module="core">Directory</directive> directive, in
  272. contrast, will apply to any content served from that location,
  273. regardless of how it is called.  (An exception is filesystem links.
  274. The same directory can be placed in more than one part of the
  275. filesystem using symbolic links.  The <directive type="section"
  276. module="core">Directory</directive> directive will follow the symbolic
  277. link without resetting the pathname.  Therefore, for the highest level
  278. of security, symbolic links should be disabled with the appropriate
  279. <directive module="core">Options</directive> directive.)</p>
  280.  
  281. <p>If you are, perhaps, thinking that none of this applies to you
  282. because you use a case-sensitive filesystem, remember that there are
  283. many other ways to map multiple webspace locations to the same
  284. filesystem location.  Therefore you should always use the filesystem
  285. containers when you can.  There is, however, one exception to this
  286. rule.  Putting configuration restrictions in a <code><Location
  287. /></code> section is perfectly safe because this section will apply
  288. to all requests regardless of the specific URL.</p>
  289. </section>
  290.  
  291. </section>
  292.  
  293. <section id="virtualhost"><title>Virtual Hosts</title>
  294.  
  295. <p>The <directive type="section" module="core">VirtualHost</directive>
  296. container encloses directives that apply to specific hosts.
  297. This is useful when serving multiple hosts from the same machine
  298. with a different configuration for each.  For more information,
  299. see the <a href="vhosts/">Virtual Host Documentation</a>.</p>
  300. </section>
  301.  
  302. <section id="proxy"><title>Proxy</title>
  303.  
  304. <p>The <directive type="section" module="mod_proxy">Proxy</directive>
  305. and <directive type="section" module="mod_proxy">ProxyMatch</directive>
  306. containers apply enclosed configuration directives only
  307. to sites accessed through <module>mod_proxy</module>'s proxy server
  308. that match the specified URL.  For example, the following configuration
  309. will prevent the proxy server from being used to access the
  310. <code>cnn.com</code> website.</p>
  311.  
  312. <example>
  313. <Proxy http://cnn.com/*><br />
  314. Order allow,deny<br />
  315. Deny from all<br />
  316. </Proxy>
  317. </example>
  318. </section>
  319.  
  320. <section id="whatwhere"><title>What Directives are Allowed?</title>
  321.  
  322. <p>To find out what directives are allowed in what types of
  323. configuration sections, check the <a
  324. href="mod/directive-dict.html#Context">Context</a> of the directive.
  325. Everything that is allowed in 
  326. <directive type="section" module="core">Directory</directive>
  327. sections is also syntactically allowed in
  328. <directive type="section" module="core">DirectoryMatch</directive>,
  329. <directive type="section" module="core">Files</directive>,
  330. <directive type="section" module="core">FilesMatch</directive>,
  331. <directive type="section" module="core">Location</directive>,
  332. <directive type="section" module="core">LocationMatch</directive>,
  333. <directive type="section" module="mod_proxy">Proxy</directive>,
  334. and <directive type="section" module="mod_proxy">ProxyMatch</directive>
  335. sections.  There are some exceptions, however.</p>
  336.  
  337. <ul>
  338. <li>The <directive module="core">AllowOverride</directive> directive
  339. works only in <directive type="section" module="core">Directory</directive>
  340. sections.</li>
  341.  
  342. <li>The <code>FollowSymLinks</code> and
  343. <code>SymLinksIfOwnerMatch</code> <directive
  344. module="core">Options</directive> work only in <directive
  345. type="section" module="core">Directory</directive> sections or
  346. <code>.htaccess</code> files.</li>
  347.  
  348. <li>The <directive module="core">Options</directive> directive cannot
  349. be used in <directive type="section" module="core">Files</directive>
  350. and <directive type="section" module="core">FilesMatch</directive>
  351. sections.</li>
  352. </ul>
  353. </section>
  354.  
  355. <section id="mergin"><title>How the sections are merged</title>
  356.  
  357. <p>The configuration sections are applied in a very particular order.
  358. Since this can have important effects on how configuration directives
  359. are interpreted, it is important to understand how this works.</p>
  360.  
  361.     <p>The order of merging is:</p>
  362.  
  363.     <ol>
  364.       <li> <directive type="section"
  365.       module="core">Directory</directive> (except regular expressions)
  366.       and .htaccess done simultaneously (with .htaccess, if allowed,
  367.       overriding <directive type="section"
  368.       module="core">Directory</directive>)</li>
  369.  
  370.       <li><directive type="section" module="core">DirectoryMatch</directive>
  371.       (and <code><Directory ~></code>)</li>
  372.  
  373.       <li><directive type="section"
  374.       module="core">Files</directive> and <directive
  375.       type="section" module="core">FilesMatch</directive> done
  376.       simultaneously</li>
  377.  
  378.       <li><directive type="section" module="core">Location</directive>
  379.       and <directive type="section"
  380.       module="core">LocationMatch</directive> done simultaneously</li>
  381.     </ol>
  382.  
  383.     <p>Apart from <directive type="section"
  384.     module="core">Directory</directive>, each group is processed in
  385.     the order that they appear in the configuration files.  <directive
  386.     type="section" module="core">Directory</directive> (group 1 above)
  387.     is processed in the order shortest directory component to longest.
  388.     So for example, <code><Directory /var/web/dir></code> will
  389.     be processed before <code><Directory
  390.     /var/web/dir/subdir></code>.  If multiple <directive
  391.     type="section" module="core">Directory</directive> sections apply
  392.     to the same directory they are processed in the configuration file
  393.     order. Configurations included via the <directive
  394.     module="core">Include</directive> directive will be treated as if
  395.     they were inside the including file at the location of the
  396.     <directive module="core">Include</directive> directive.</p>
  397.  
  398.     <p>Sections inside <directive type="section"
  399.     module="core">VirtualHost</directive> sections
  400.     are applied <em>after</em> the corresponding sections outside
  401.     the virtual host definition. This allows virtual hosts to
  402.     override the main server configuration.</p>
  403.  
  404.     <p>Later sections override earlier ones.</p>
  405.  
  406. <note><title>Technical Note</title>
  407.       There is actually a
  408.       <code><Location></code>/<code><LocationMatch></code>
  409.       sequence performed just before the name translation phase
  410.       (where <code>Aliases</code> and <code>DocumentRoots</code>
  411.       are used to map URLs to filenames). The results of this
  412.       sequence are completely thrown away after the translation has
  413.       completed.
  414. </note>
  415.  
  416. <section id="merge-examples"><title>Some Examples</title>
  417.  
  418. <p>Below is an artificial example to show the order of
  419. merging. Assuming they all apply to the request, the directives in
  420. this example will be applied in the order A > B > C > D >
  421. E.</p>
  422.  
  423. <example>
  424. <Location /><br />
  425. E<br />
  426. </Location><br />
  427. <br />
  428. <Files f.html><br />
  429. D<br />
  430. </Files><br />
  431. <br />
  432. <VirtualHost *><br />
  433. <Directory /a/b><br />
  434. B<br />
  435. </Directory><br />
  436. </VirtualHost><br />
  437. <br />
  438. <DirectoryMatch "^.*b$"><br />
  439. C<br />
  440. </DirectoryMatch><br />
  441. <br />
  442. <Directory /a/b><br />
  443. A<br />
  444. </Directory><br />
  445. <br />
  446. </example>
  447.  
  448. <p>For a more concrete example, consider the following.  Regardless of
  449. any access restrictions placed in <directive module="core"
  450. type="section">Directory</directive> sections, the <directive
  451. module="core" type="section">Location</directive> section will be
  452. evaluated last and will allow unrestricted access to the server.  In
  453. other words, order of merging is important, so be careful!</p>
  454.  
  455. <example>
  456. <Location /><br />
  457. Order deny,allow<br />
  458. Allow from all<br />
  459. </Location><br />
  460. <br />
  461. # Woops!  This <Directory> section will have no effect<br />
  462. <Directory /><br />
  463. Order allow,deny<br />
  464. Allow from all<br />
  465. Deny from badguy.example.com<br />
  466. </Directory>
  467. </example>
  468.  
  469. </section>
  470.  
  471. </section>
  472. </manualpage>
  473.  
  474.