mod_dumpio.html.en revision b41a0dbe6310c576e96b7ea6910051fd84fb06f5
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
bc8fd1b0b1afdf89b8d28eefa8cd74e26ba97986fielding XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb This file is generated from xml source: DO NOT EDIT
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<link href="/style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<link href="/style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<link href="/style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<link href="/images/favicon.ico" rel="shortcut icon" /></head>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<p class="menu"><a href="/mod/">Modules</a> | <a href="/mod/directives.html">Directives</a> | <a href="/faq/">FAQ</a> | <a href="/glossary.html">Glossary</a> | <a href="/sitemap.html">Sitemap</a></p>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<div class="up"><a href="./"><img title="<-" alt="<-" src="/images/left.gif" /></a></div>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs/">Documentation</a> > <a href="../">Version 2.3</a> > <a href="./">Modules</a></div>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<p><span>Available Languages: </span><a href="/en/mod/mod_dumpio.html" title="English"> en </a> |
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<a href="/ja/mod/mod_dumpio.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a></p>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Dumps all I/O to error log as desired.</td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="module-dict.html#Status">Status:</a></th><td>Extension</td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="module-dict.html#ModuleIdentifier">Module�Identifier:</a></th><td>dumpio_module</td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="module-dict.html#SourceFile">Source�File:</a></th><td>mod_dumpio.c</td></tr></table>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb Apache to be logged (dumped) to the error.log file.
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb <p>The data logging is done right after SSL decoding (for
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb input) and right before SSL encoding (for output). As can
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb be expected, this can produce extreme volumes of data,
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb and should only be used when debugging problems.</p>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<div id="quickview"><h3 class="directives">Directives</h3>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<li><img alt="" src="/images/down.gif" /> <a href="#dumpioinput">DumpIOInput</a></li>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<li><img alt="" src="/images/down.gif" /> <a href="#dumpiooutput">DumpIOOutput</a></li>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<li><img alt="" src="/images/down.gif" /> <a href="#enable">Enabling dumpio Support</a></li>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<div class="top"><a href="#page-header"><img alt="top" src="/images/up.gif" /></a></div>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<h2><a name="enable" id="enable">Enabling dumpio Support</a></h2>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb <p>To enable the module, it should be compiled and loaded
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb in to your running Apache configuration. Logging can then
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb be enabled or disabled seperately for input and output via
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb the below directives. Additionally, <code class="module"><a href="/mod/mod_dumpio.html">mod_dumpio</a></code>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb needs to be configured to <code class="directive"><a href="/mod/core.html#loglevel">LogLevel</a></code> <code>trace7</code>:
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb LogLevel dumpio:trace7
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<div class="top"><a href="#page-header"><img alt="top" src="/images/up.gif" /></a></div>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<div class="directive-section"><h2><a name="DumpIOInput" id="DumpIOInput">DumpIOInput</a> <a name="dumpioinput" id="dumpioinput">Directive</a></h2>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Dump all input data to the error log</td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>DumpIOInput On|Off</code></td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>DumpIOInput Off</code></td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config</td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_dumpio</td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>DumpIOInput is only available in Apache 2.1.3 and
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb DumpIOInput On
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<div class="top"><a href="#page-header"><img alt="top" src="/images/up.gif" /></a></div>
f888346b48f5e5b5e3f0a47dedb8cefd2759a4e2gregames<div class="directive-section"><h2><a name="DumpIOOutput" id="DumpIOOutput">DumpIOOutput</a> <a name="dumpiooutput" id="dumpiooutput">Directive</a></h2>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Dump all output data to the error log</td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>DumpIOOutput On|Off</code></td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>DumpIOOutput Off</code></td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config</td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_dumpio</td></tr>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>DumpIOOutput is only available in Apache 2.1.3 and
d4abb06ac220bb280ae996b6d21bbd257db51bb1jerenkrantz DumpIOOutput On
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<p><span>Available Languages: </span><a href="/en/mod/mod_dumpio.html" title="English"> en </a> |
4f9c22c4f27571d54197be9674e1fc0d528192aestriker<a href="/ja/mod/mod_dumpio.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a></p>
4f9c22c4f27571d54197be9674e1fc0d528192aestriker<p class="apache">Copyright 2010 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
b38846b15c8891c6dec44dcc4f96ca40721bf663rbb<p class="menu"><a href="/mod/">Modules</a> | <a href="/mod/directives.html">Directives</a> | <a href="/faq/">FAQ</a> | <a href="/glossary.html">Glossary</a> | <a href="/sitemap.html">Sitemap</a></p></div>