Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6b53b53e6d705e08aef4043e91a1219ee86b78c2 (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
<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd">

<!-- =============================================================== -->
<!-- Configure the Jetty Request Log                                 -->
<!-- =============================================================== -->
<Configure id="Server" class="org.eclipse.jetty.server.Server">

  <!-- =========================================================== -->
  <!-- Configure Request Log for Server                            -->
  <!-- (Use RequestLogHandler for a context specific RequestLog    -->
  <!-- =========================================================== -->
  <Set name="RequestLog">
    <New id="RequestLog" class="org.eclipse.jetty.server.AsyncNCSARequestLog">
      <Set name="filename"><Property name="jetty.base" default="." /><Property name="requestlog.filename" default="/logs/yyyy_mm_dd.request.log"/></Set>
      <Set name="filenameDateFormat"><Property name="requestlog.filenameDateFormat" default="yyyy_MM_dd"/></Set>
      <Set name="retainDays"><Property name="requestlog.retain" default="90"/></Set>
      <Set name="append"><Property name="requestlog.append" default="false"/></Set>
      <Set name="extended"><Property name="requestlog.extended" default="false"/></Set>
      <Set name="logCookies"><Property name="requestlog.cookies" default="false"/></Set>
      <Set name="LogTimeZone"><Property name="requestlog.timezone" default="GMT"/></Set>
    </New>
  </Set>
</Configure>

Back to the top