summaryrefslogtreecommitdiffstats
path: root/docs/manual/developer/modules.html.en
diff options
context:
space:
mode:
Diffstat (limited to 'docs/manual/developer/modules.html.en')
-rw-r--r--docs/manual/developer/modules.html.en16
1 files changed, 13 insertions, 3 deletions
diff --git a/docs/manual/developer/modules.html.en b/docs/manual/developer/modules.html.en
index 4c6c2fe9a5..4e1e9e2d62 100644
--- a/docs/manual/developer/modules.html.en
+++ b/docs/manual/developer/modules.html.en
@@ -196,6 +196,19 @@ module MODULE_VAR_EXPORT <var>module_name</var>_module =
far...</p>
<dl>
+ <dt><code>ap_hook_pre_config</code></dt>
+ <dd>do any setup required prior to processing configuration
+ directives</dd>
+
+ <dt><code>ap_hook_check_config</code></dt>
+ <dd>review configuration directive interdependencies</dd>
+
+ <dt><code>ap_hook_test_config</code></dt>
+ <dd>executes only with <code>-t</code> option</dd>
+
+ <dt><code>ap_hook_open_logs</code></dt>
+ <dd>open any specified logs</dd>
+
<dt><code>ap_hook_post_config</code></dt>
<dd>this is where the old <code>_init</code> routines get
registered</dd>
@@ -203,9 +216,6 @@ module MODULE_VAR_EXPORT <var>module_name</var>_module =
<dt><code>ap_hook_http_method</code></dt>
<dd>retrieve the http method from a request. (legacy)</dd>
- <dt><code>ap_hook_open_logs</code></dt>
- <dd>open any specified logs</dd>
-
<dt><code>ap_hook_auth_checker</code></dt>
<dd>check if the resource requires authorization</dd>