]> granicus.if.org Git - apache/commitdiff
fix various invalid module references
authorAndré Malo <nd@apache.org>
Sun, 26 Jan 2014 22:58:27 +0000 (22:58 +0000)
committerAndré Malo <nd@apache.org>
Sun, 26 Jan 2014 22:58:27 +0000 (22:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1561569 13f79535-47bb-0310-9956-ffa450edef68

18 files changed:
docs/manual/env.xml
docs/manual/howto/auth.xml
docs/manual/howto/htaccess.xml
docs/manual/mod/mod_allowhandlers.xml
docs/manual/mod/mod_authn_dbm.xml
docs/manual/mod/mod_cache.xml
docs/manual/mod/mod_ext_filter.xml
docs/manual/mod/mod_headers.xml.ja
docs/manual/mod/mod_info.xml
docs/manual/mod/mod_remoteip.xml
docs/manual/mod/mod_session_crypto.xml
docs/manual/new_features_2_0.xml
docs/manual/new_features_2_2.xml
docs/manual/programs/configure.xml
docs/manual/ssl/ssl_faq.xml
docs/manual/urlmapping.xml
docs/manual/vhosts/examples.xml
docs/manual/vhosts/fd-limits.xml

index 5bb7321254d449a1cc0d6c74649826698e8d97d1..5bfefb285f1c56edff72a8f91a415a6a0a3cf32b 100644 (file)
 
       <p>If you have to support a client which sends broken headers and
       which can't be fixed, a simple workaround involving <module>mod_setenvif
-      </module> and <module>mod_header</module> allows you to still accept
+      </module> and <module>mod_headers</module> allows you to still accept
       these headers:</p>
 
 <highlight language="config">
index 715c5b727a04a46b6af651ddd1e4c457fca571f3..79dc33e02589ba6fa1d50bd2d1ec09a12591d64c 100644 (file)
@@ -491,13 +491,11 @@ Require group GroupName
         other than who they are. Something such as where they are
         coming from.</p>
 
-        <p>The authorization providers <directive module="mod_authz_host">
-        all</directive>, <directive module="mod_authz_host">
-        env</directive>, <directive module="mod_authz_host">
-        host</directive> and <directive module="mod_authz_host">
-        ip</directive> let you allow or deny access based other host based
-        criteria such as host name or ip address of the machine requesting
-        a document.</p>
+        <p>The authorization providers <code>all</code>,
+        <code>env</code>, <code>host</code> and <code>ip</code> let you
+        allow or deny access based other host based criteria such as
+        host name or ip address of the machine requesting a
+        document.</p>
 
         <p>The usage of these providers is specified through the
         <directive module="mod_authz_core">Require</directive> directive.
@@ -583,10 +581,11 @@ Require group GroupName
 
 <section id="moreinformation"><title>More information</title>
     <p>You should also read the documentation for
-    <module>mod_auth_basic</module> and <module>mod_authz_host</module> which
-    contain some more information about how this all works.
-    The directive <directive module="mod_authn_core">&lt;AuthnProviderAlias&gt;</directive>
-    can also help in simplifying certain authentication configurations.</p>
+    <module>mod_auth_basic</module> and <module>mod_authz_host</module>
+    which contain some more information about how this all works.  The
+    directive <directive type="section"
+    module="mod_authn_core">AuthnProviderAlias</directive> can also help
+    in simplifying certain authentication configurations.</p>
 
     <p>The various ciphers supported by Apache for authentication data are
     explained in <a href="../misc/password_encryptions.html">Password
index 3e3bc2a586b70d50a3a2742454cfd798206a1cdc..ada3e73ec597569bbc460371338a0e6bd16ad075 100644 (file)
@@ -47,11 +47,11 @@ changes on a per-directory basis.</p>
             <directive module="core">Options</directive>
             <directive module="mod_mime">AddHandler</directive>
             <directive module="core">SetHandler</directive>
-            <directive module="core">AuthType</directive>
-            <directive module="core">AuthName</directive>
+            <directive module="mod_authn_core">AuthType</directive>
+            <directive module="mod_authn_core">AuthName</directive>
             <directive module="mod_authn_file">AuthUserFile</directive>
             <directive module="mod_authz_groupfile">AuthGroupFile</directive>
-            <directive module="core">Require</directive>
+            <directive module="mod_authz_core">Require</directive>
         </directivelist>
 
     </related>
index f4dc7601dfe0068108fe4ce16a3ecaf3ffeb7b13..2dcd165af5b55c90dd92d2a0134e8b645daeea9c 100644 (file)
@@ -45,7 +45,7 @@ returns 403 FORBIDDEN to the client. This can be used with directives like
 </summary>
 
 <seealso><directive module="core">SetHandler</directive></seealso>
-<seealso><directive module="mime">AddHandler</directive></seealso>
+<seealso><directive module="mod_mime">AddHandler</directive></seealso>
 
 <directivesynopsis>
 <name>AllowHandlers</name>
index 161eff9e75c7f81f19baa537a3be66c7c459120a..0d032f09f0d25f6d67d35a8b9d124eb88e55b411 100644 (file)
@@ -82,8 +82,8 @@ passwords for authentication</description>
     </note>
 
     <p>The encrypted password format depends on which authentication
-    frontend (e.g. <module>mod_authn_basic</module> or
-    <module>mod_authn_digest</module>) is being used.  See <a
+    frontend (e.g. <module>mod_auth_basic</module> or
+    <module>mod_auth_digest</module>) is being used.  See <a
     href="../misc/password_encryptions.html">Password Formats</a> for
     more information.</p>
 
index 587a33a132daaa3baf5de27522731a8eaf459095..1284cef8a62888bef76a3fc527c42c2e4956f441 100644 (file)
@@ -964,8 +964,8 @@ AddOutputFilterByType CACHE;INCLUDES;DEFLATE text/html
   <p>When the <directive module="mod_cache">CacheHeader</directive> directive
   is switched on, an <strong>X-Cache</strong> header will be added to the response
   with the cache status of this response. If the normal handler is used, this
-  directive may appear within a <directive module="core">&lt;Directory&gt;</directive>
-  or <directive module="core">&lt;Location&gt;</directive> directive. If the quick
+  directive may appear within a <directive type="section" module="core">Directory</directive>
+  or <directive type="section" module="core">Location</directive> directive. If the quick
   handler is used, this directive must appear within a server or virtual host
   context, otherwise the setting will be ignored.</p>
 
@@ -1013,8 +1013,8 @@ CacheHeader on
   used by the service and client.</p>
 
   <p>If the normal handler is used, this directive may appear within a
-  <directive module="core">&lt;Directory&gt;</directive> or
-  <directive module="core">&lt;Location&gt;</directive> directive. If the quick handler
+  <directive type="section" module="core">Directory</directive> or
+  <directive type="section" module="core">Location</directive> directive. If the quick handler
   is used, this directive must appear within a server or virtual host context, otherwise
   the setting will be ignored.</p>
 
index f663e2b4d59bc1693bad4803f620c57045a01188..e47d180f772d3e51d9ead9f86a0347fd56f4e2bd 100644 (file)
@@ -96,7 +96,7 @@ ExtFilterDefine gzip mode=output cmd=/bin/gzip
     # run on output
     SetOutputFilter gzip
     
-    # mod_header directive to add
+    # mod_headers directive to add
     # "Content-Encoding: gzip" header field
     Header set Content-Encoding gzip
 &lt;/Location&gt;
index 542e266801685a3341ad10a544b810bdd3ae8302..d2f07b1b26fb1faf09ebaed0cb9a7fb8634d613f 100644 (file)
@@ -38,7 +38,7 @@
 
 <section id="order"><title>処理の順番</title>
 
-    <p><module>mod_header</module> のディレクティブはサーバ設定のほぼどこにでも
+    <p><module>mod_headers</module> のディレクティブはサーバ設定のほぼどこにでも
     書くことができ、影響する範囲を<a
     href="../sections.html">設定用セクション</a>で囲むことで限定する
     ことができます。</p>
index 1fdad686af81c880d9ff06498c977977f6db4885..c0a028653928ba1e523ff659294c2326be19fdfd 100644 (file)
@@ -139,18 +139,18 @@ configuration</description>
           <directive module="mod_so">LoadFile</directive>.</li>
       <li>Directives which control the configuration file itself, such as
           <directive module="core">Include</directive>,
-          <directive module="core">&lt;IfModule&gt;</directive> and
-          <directive module="core">&lt;IfDefine&gt;</directive> are not
+          <directive type="section" module="core">IfModule</directive> and
+          <directive type="section" module="core">IfDefine</directive> are not
           listed, but the included configuration directives are.</li>
       <li>Comments are not listed. (This may be considered a feature.)</li>
       <li>Configuration directives from <code>.htaccess</code> files are
           not listed (since they do not form part of the permanent server
           configuration).</li>
       <li>Container directives such as
-          <directive module="core">&lt;Directory&gt;</directive>
+          <directive type="section" module="core">Directory</directive>
           are listed normally, but <module>mod_info</module> cannot figure
           out the line number for the closing
-          <directive module="core">&lt;/Directory&gt;</directive>.</li>
+          <directive type="section" module="core" name="Directory">/Directory</directive>.</li>
       <li>Directives generated by third party modules such as <a href="http://perl.apache.org">mod_perl</a>
           might not be listed.</li>
     </ul>
index 02f680cb41fa012229ef53b953b28524e77913fd..ba127a7f6b920bc44b7d410a611479d4075dcc11 100644 (file)
@@ -44,7 +44,7 @@ via the request headers.
 
     <p>Once replaced as instructed, this overridden useragent IP address is
     then used for the <module>mod_authz_host</module>
-    <directive module="mod_authz_host" type="section">Require ip</directive>
+    <directive module="mod_authz_core" name="Require">Require ip</directive>
     feature, is reported by <module>mod_status</module>, and is recorded by
     <module>mod_log_config</module> <code>%a</code> and <module>core</module>
     <code>%a</code> format strings. The underlying client IP of the connection
index 5d873df2a0f285d0b4c061fc3c54533d5f0ef400..c2446c251dd3f676986e3f59293fd0a07ab2e062 100644 (file)
@@ -120,11 +120,12 @@ SessionCryptoPassphrase secret
       </highlight>
     </example>
 
-    <p>The <var>NSS</var> crypto driver might have already been configured by another
-    part of the server, for example from <module>mod_nss</module> or
-    <module>mod_ldap</module>. If found to have already been configured,
-    a warning will be logged, and the existing configuration will have taken affect.
-    To avoid this warning, use the noinit parameter as follows.</p>
+    <p>The <var>NSS</var> crypto driver might have already been
+    configured by another part of the server, for example from
+    <code>mod_nss</code> or <module>mod_ldap</module>. If found to
+    have already been configured, a warning will be logged, and the
+    existing configuration will have taken affect.  To avoid this
+    warning, use the noinit parameter as follows.</p>
 
     <example><title>NSS with certificate database</title>
     <highlight language="config">
index d24723a9bf68844e8641c92289d07024535890f7..ca8032e560d76c59c914711d12f08a34e2496015 100644 (file)
       browsers to request that content be compressed before delivery,
       saving network bandwidth.</dd>
 
-      <dt><module>mod_auth_ldap</module></dt>
+      <dt><module outdated="true">mod_auth_ldap</module></dt>
 
       <dd>New module in Apache httpd 2.0.41.  This module allows an LDAP
       database to be used to store credentials for HTTP Basic
       using <module>mod_include</module>'s variables <code>$0</code>
       .. <code>$9</code>.</dd>
 
-      <dt><module>mod_auth_dbm</module></dt>
+      <dt><module outdated="true">mod_auth_dbm</module></dt>
 
       <dd>Now supports multiple types of DBM-like databases using the
       <directive>AuthDBMType</directive> directive.</dd>
index f7961ff9a32c24991d0c542a7d8693c9f581b584..38ed6703e8990a5554e9881358982b2f20079c6b 100644 (file)
           certain authentication configurations.
       </dd>
 
-      <dt><module>mod_authnz_ldap</module></dt>
+      <dt><module outdated="true">mod_authnz_ldap</module></dt>
       <dd>This module is a port of the 2.0
           <code>mod_auth_ldap</code> module to the 2.2 <code>Authn/Authz</code>
           framework.  New features include using LDAP attribute values and
index 8212e966fd1b202b4c91f8af49715f84304a6854..387ff084a1e75b785b57f6d8064329f19998b000 100644 (file)
         <p>To find out which modules are compiled by default, run
         <code>./configure -h</code> or <code>./configure --help</code>
         and look under <code>Optional Features</code>.  Suppose you
-        are interested in <module>mod_example1</module> and
-        <module>mod_example2</module>, and you
+        are interested in <code>mod_example1</code> and
+        <code>mod_example2</code>, and you
         see this:</p>
 
         <example><pre>Optional Features:
index 0e340a2f6ac05afa5dfc3a008046caf4539e9011..3839ee63ddf9059cbc5b230c0494b64bdaca58b6 100644 (file)
@@ -765,7 +765,7 @@ SetEnvIf User-Agent "MSIE [2-5]" \
     command. Alternatively, you can append the following standard 1024-bit DH
     parameters from <a href="http://www.ietf.org/rfc/rfc2409.txt">RFC 2409</a>,
     section 6.2 to the respective
-    <directive module="ssl">SSLCertificateFile</directive> file:</p>
+    <directive module="mod_ssl">SSLCertificateFile</directive> file:</p>
     <example><pre>-----BEGIN DH PARAMETERS-----
 MIGHAoGBAP//////////yQ/aoiFowjTExmKLgNwc0SkCTgiKZ8x0Agu+pjsTmyJR
 Sgh5jjQE3e+VGbPNOkMbMCsKbfJfFDdP4TVtbVHCReSFtXZiXn7G9ExC6aY37WsL
index 9d148f4b5b8ac261f271ffcc007bbc3167126047..71cdad84d64936849998111d0c3fa01cad8be7b4 100644 (file)
@@ -50,7 +50,7 @@
 <directive module="mod_alias">Alias</directive>
 <directive module="mod_alias">AliasMatch</directive>
 <directive module="mod_speling">CheckSpelling</directive>
-<directive module="core">DirectoryIndex</directive>
+<directive module="mod_dir">DirectoryIndex</directive>
 <directive module="core">DocumentRoot</directive>
 <directive module="core">ErrorDocument</directive>
 <directive module="core">Options</directive>
@@ -88,7 +88,7 @@
 
     <p>If a directory is requested (i.e. a path ending with
     <code>/</code>), the file served from that directory is defined by
-    the <directive module="core">DirectoryIndex</directive> directive.
+    the <directive module="mod_dir">DirectoryIndex</directive> directive.
     For example, if <code>DocumentRoot</code> were set as above, and 
     you were to set:</p>
 
index 86f99f07bf7aa138a20b2f440cb6eafcd8ecb867..f00b9454f0080b7901b2848a020f90fec57a0a17 100644 (file)
@@ -330,9 +330,10 @@ Listen 80
     virtual host through to a server running on another machine. In the
     example, a virtual host of the same name is configured on a machine
     at <code>192.168.111.2</code>. The <directive
-    module="mod_proxy">ProxyPreserveHost On</directive> directive is
-    used so that the desired hostname is passed through, in case we are
-    proxying multiple hostnames to a single machine.</p>
+    module="mod_proxy" name="ProxyPreserveHost">ProxyPreserveHost
+    On</directive> directive is used so that the desired hostname is
+    passed through, in case we are proxying multiple hostnames to a
+    single machine.</p>
 
     <highlight language="config">
 &lt;VirtualHost *:*&gt;
index cd9802eb6e7f9cee168bd320fe5ceb1558bf121a..56c78c24b70d064e18165fa3cc232a968f34ab41 100644 (file)
@@ -99,8 +99,7 @@ CustomLog logs/multiple_vhost_log vhost
 <p>This will create a log file in the common log format, but with the
 canonical virtual host (whatever appears in the
 <directive module="core">ServerName</directive> directive) prepended to
-each line. (See <directive
-module="mod_log_config">Custom Log Formats</directive> for
+each line. (See <module>mod_log_config</module> for
 more about customizing your log files.)</p>
 
 <p>When you wish to split your log file into its component parts (one