mirror of
https://github.com/apache/httpd.git
synced 2025-08-13 14:40:20 +00:00

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1328323 13f79535-47bb-0310-9956-ffa450edef68
99 lines
3.1 KiB
XML
99 lines
3.1 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
|
|
<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
|
|
<!-- $LastChangedRevision$ -->
|
|
|
|
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You 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>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 separately for input and output via
|
|
the below directives. Additionally, <module>mod_dumpio</module>
|
|
needs to be configured to <directive
|
|
module="core">LogLevel</directive> <code>trace7</code>:
|
|
</p>
|
|
<example>
|
|
LogLevel dumpio:trace7
|
|
</example>
|
|
</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>
|
|
|
|
<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.1.3 and
|
|
later.</compatibility>
|
|
|
|
<usage>
|
|
<p>Enable dumping of all output.</p>
|
|
|
|
<example><title>Example</title>
|
|
DumpIOOutput On
|
|
</example>
|
|
</usage>
|
|
|
|
</directivesynopsis>
|
|
|
|
</modulesynopsis>
|