Apache HTTP Сервер Версия 2.2
Apache Module mod_dumpio
Описание: | Dumps all I/O to error log as desired. |
---|---|
Статус: | Extension |
Идентификатор модуля: | dumpio_module |
Исходный файл: | mod_dumpio.c |
Summary
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 |
Статус: | Extension |
Модуль: | mod_dumpio |
Совместимость: | DumpIOInput is only available in Apache 2.1.3 and later. |
Enable dumping of all input.
Пример
DumpIOInput On
DumpIOLogLevel Директива
Описание: | Controls the logging level of the DumpIO output |
---|---|
Синтаксис: | DumpIOLogLevel level |
По умолчанию: | DumpIOLogLevel debug |
Контекст: | server config |
Статус: | Extension |
Модуль: | mod_dumpio |
Совместимость: | DumpIOLogLevel is only available in Apache 2.2.4 and later. |
Enable dumping of all output at a specific LogLevel
level.
Пример
DumpIOLogLevel notice
DumpIOOutput Директива
Описание: | Dump all output data to the error log |
---|---|
Синтаксис: | DumpIOOutput On|Off |
По умолчанию: | DumpIOOutput Off |
Контекст: | server config |
Статус: | Extension |
Модуль: | mod_dumpio |
Совместимость: | DumpIOOutput is only available in Apache 2.1.3 and later. |
Enable dumping of all output.
Пример
DumpIOOutput On