332
|
1 ########################################################
|
|
2 # Define log file group for httpd
|
|
3 ########################################################
|
|
4
|
|
5 # What actual file? Defaults to LogPath if not absolute path....
|
|
6 LogFile = apache/error_*.log
|
|
7
|
|
8
|
|
9 # If the archives are searched, here is one or more line
|
|
10 # (optionally containing wildcards) that tell where they are...
|
|
11 #If you use a "-" in naming add that as well -mgt
|
|
12 Archive = apache/error_*.log.*.gz
|
|
13
|
|
14 # Expand the repeats (actually just removes them now)
|
|
15 *ExpandRepeats
|
|
16
|
|
17
|
|
18 # Keep only the lines in the proper date range...
|
|
19 *ApplyStdDate = "\[%a %b %d %H:%M:%S.\d{6} %Y\]"
|
|
20 *RemoveHeaders = "\[\w{3} \w{3} \d{1,2} \d\d:\d\d:\d\d(\.\d*)? \d{4}\] "
|
|
21
|
|
22 # vi: shiftwidth=3 tabstop=3 et
|