File: common_log.cfg

package info (click to toggle)
httpry 0.1.8-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 436 kB
  • sloc: ansic: 1,358; perl: 1,336; sh: 155; makefile: 62
file content (29 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# Config file for common_log.pm
#
# $output_dir (not required)
#    A directory to write client detail
#    files. If not specified, defaults to current
#    directory.
#
# $output_file (required)
#    A valid path to write an output file
#    containing the log file data.
#
# $ignore_response (not required)
#    Set to '1' if you want to ignore server
#    responses and only print available request
#    data.
#
# $combined_format (not required)
#    Set to '1' if you want to output in the
#    combined log format instead, including
#    the Referer and User-Agent headers.
#

$output_dir      = "";
$output_file     = "common_log.txt";
$ignore_response = 0;
$combined_format = 0;

1;