From b5dca2ef56c631a9102d4b672b844e2d870585e7 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Tue, 14 Dec 2004 17:26:51 +0000 Subject: [PATCH] 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 --- docs/manual/mod/mod_dumpio.xml | 69 +++++++++++++++++++++++++++++ docs/manual/mod/mod_dumpio.xml.meta | 11 +++++ 2 files changed, 80 insertions(+) create mode 100644 docs/manual/mod/mod_dumpio.xml create mode 100644 docs/manual/mod/mod_dumpio.xml.meta diff --git a/docs/manual/mod/mod_dumpio.xml b/docs/manual/mod/mod_dumpio.xml new file mode 100644 index 00000000000..dc1fb078343 --- /dev/null +++ b/docs/manual/mod/mod_dumpio.xml @@ -0,0 +1,69 @@ + + + + + + + + + +mod_dumpio +Dumps to error.log all I/O as desired. +Extension +mod_dumpio.c +dumpio_module + + +

mod_dumpio 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. +

+ +

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.

+
+ +
+ Enabling DumpIO Support + +

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.

+
+ + + +DumpIOInput +Dump all input data to the error log +DumpIOInput On|Off +DumpIOInput Off +server config +DumpIOInput is only available in Apache 2.1.3 and +later. + +DumpIOOutput +Dump all output data to the error log +DumpIOOutput On|Off +DumpIOOutput Off +server config +DumpIOOutput is only available in Apache 2.1.3 and +later. + + +
diff --git a/docs/manual/mod/mod_dumpio.xml.meta b/docs/manual/mod/mod_dumpio.xml.meta new file mode 100644 index 00000000000..9f474bc1241 --- /dev/null +++ b/docs/manual/mod/mod_dumpio.xml.meta @@ -0,0 +1,11 @@ + + + + mod_dumpio + /mod/ + .. + + + en + + -- 2.47.3