]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
dumpio docs
authorJim Jagielski <jim@apache.org>
Fri, 4 Feb 2005 13:25:39 +0000 (13:25 +0000)
committerJim Jagielski <jim@apache.org>
Fri, 4 Feb 2005 13:25:39 +0000 (13:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@151349 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_dumpio.html [new file with mode: 0644]
docs/manual/mod/mod_dumpio.xml [new file with mode: 0644]
docs/manual/mod/mod_dumpio.xml.meta [new file with mode: 0644]

diff --git a/docs/manual/mod/mod_dumpio.html b/docs/manual/mod/mod_dumpio.html
new file mode 100644 (file)
index 0000000..a8a0b2c
--- /dev/null
@@ -0,0 +1,3 @@
+URI: mod_dumpio.html.en
+Content-Language: en
+Content-type: text/html; charset=ISO-8859-1
diff --git a/docs/manual/mod/mod_dumpio.xml b/docs/manual/mod/mod_dumpio.xml
new file mode 100644 (file)
index 0000000..acb1670
--- /dev/null
@@ -0,0 +1,90 @@
+<?xml version="1.0"?>
+<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
+<!-- $LastChangedRevision: 125277 $ -->
+
+<!--
+ Copyright 2004-2005 The Apache Software Foundation or its licensors,
+                     as applicable.
+
+ 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 all I/O to error log as desired.</description>
+<status>Experimental</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.0.53 and 
+later.</compatibility>
+
+<usage>
+    <p>Enable dumping of all input.</p>
+
+    <example><title>Example</title>
+      DumpIOInput On
+    </example>
+</usage>
+
+</directivesynopsis>
+
+<directivesynopsis>
+
+<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.0.53 and 
+later.</compatibility>
+
+<usage>
+    <p>Enable dumping of all output.</p>
+
+    <example><title>Example</title>
+      DumpIOOutput On
+    </example>
+</usage>
+
+</directivesynopsis>
+</modulesynopsis>
diff --git a/docs/manual/mod/mod_dumpio.xml.meta b/docs/manual/mod/mod_dumpio.xml.meta
new file mode 100644 (file)
index 0000000..9f474bc
--- /dev/null
@@ -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>