Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 89ad071f01dae5e242ec2094283346156501dff6 (plain) (blame)
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
30
31
32
33
34
#
# Request Log module
#

[depend]
server

[xml]
etc/jetty-requestlog.xml

[files]
logs/

[ini-template]
## File path (relative to $jetty.base)
# jetty.requestlog.filePath=/logs/yyyy_mm_dd.request.log

# Date format for rollovered files (uses SimpleDateFormat syntax)
# jetty.requestlog.filenameDateFormat=yyyy_MM_dd

# How many days to retain old log files
# jetty.requestlog.retainDays=90

## Whether to append to existing file
# jetty.requestlog.append=true

# Whether to use the extended log output
# jetty.requestlog.extended=true

# Whether to log http cookie information
# jetty.requestlog.cookies=true

## Timezone of the log entries
# jetty.requestlog.timezone=GMT

Back to the top