diff options
author | Jim Jagielski <jim@apache.org> | 2004-12-14 18:26:51 +0100 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2004-12-14 18:26:51 +0100 |
commit | b5dca2ef56c631a9102d4b672b844e2d870585e7 (patch) | |
tree | 07648a4d3cae376e2f221d84177ed0092aad1d75 /docs | |
parent | Document mod_dumpio being added. Docs to come. (diff) | |
download | apache2-b5dca2ef56c631a9102d4b672b844e2d870585e7.tar.xz apache2-b5dca2ef56c631a9102d4b672b844e2d870585e7.zip |
Add in 1st version docs for mod_dumpio...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@111844 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/mod/mod_dumpio.xml | 69 | ||||
-rw-r--r-- | docs/manual/mod/mod_dumpio.xml.meta | 11 |
2 files changed, 80 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_dumpio.xml b/docs/manual/mod/mod_dumpio.xml new file mode 100644 index 0000000000..dc1fb07834 --- /dev/null +++ b/docs/manual/mod/mod_dumpio.xml @@ -0,0 +1,69 @@ +<?xml version="1.0"?> +<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd"> +<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?> +<!-- $LastChangedRevision: 106803 $ --> + +<!-- + Copyright 2002-2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<modulesynopsis metafile="mod_dumpio.xml.meta"> + +<name>mod_dumpio</name> +<description>Dumps to error.log all I/O as desired.</description> +<status>Extension</status> +<sourcefile>mod_dumpio.c</sourcefile> +<identifier>dumpio_module</identifier> + +<summary> + <p><code>mod_dumpio</code> allows for the logging of + all input received by Apache and/or all output sent by + Apache to be logged (dumped) to the error.log file. + </p> + + <p>The data logging is done right after SSL decoding (for + input) and right before SSL encoding (for output). As can + be expected, this can produce extreme volumes of data, + and should only be used when debugging problems.</p> +</summary> + +<section id="enable"> + <title>Enabling DumpIO Support</title> + + <p>To enable the module, it should be compiled and + loaded in to your running Apache configuration. Logging + can then be enabled or disabled via the below directives.</p> +</section> + +<directivesynopsis> + +<name>DumpIOInput</name> +<description>Dump all input data to the error log</description> +<syntax>DumpIOInput On|Off</syntax> +<default>DumpIOInput Off</default> +<contextlist><context>server config</context></contextlist> +<compatibility>DumpIOInput is only available in Apache 2.1.3 and +later.</compatibility> + +<name>DumpIOOutput</name> +<description>Dump all output data to the error log</description> +<syntax>DumpIOOutput On|Off</syntax> +<default>DumpIOOutput Off</default> +<contextlist><context>server config</context></contextlist> +<compatibility>DumpIOOutput is only available in Apache 2.1.3 and +later.</compatibility> + +</directivesynopsis> +</modulesynopsis> diff --git a/docs/manual/mod/mod_dumpio.xml.meta b/docs/manual/mod/mod_dumpio.xml.meta new file mode 100644 index 0000000000..9f474bc124 --- /dev/null +++ b/docs/manual/mod/mod_dumpio.xml.meta @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8" ?> + +<metafile> + <basename>mod_dumpio</basename> + <path>/mod/</path> + <relpath>..</relpath> + + <variants> + <variant>en</variant> + </variants> +</metafile> |