Configure Undertow's access log prefix and suffix

This commit adds two properties that can be used to customize the prefix
and suffix of the Undertow's access log.

Closes gh-6652
This commit is contained in:
Stephane Nicoll
2016-08-22 10:12:26 +02:00
parent 9420daf001
commit a6ef3741ef
4 changed files with 62 additions and 2 deletions

View File

@@ -219,6 +219,8 @@ content into your application; rather pick only the properties that you need.
server.undertow.accesslog.dir= # Undertow access log directory.
server.undertow.accesslog.enabled=false # Enable access log.
server.undertow.accesslog.pattern=common # Format pattern for access logs.
server.undertow.accesslog.prefix=access_log. # Log file name prefix.
server.undertow.accesslog.suffix=log # Log file name suffix.
server.undertow.buffer-size= # Size of each buffer in bytes.
server.undertow.buffers-per-region= # Number of buffer per region.
server.undertow.direct-buffers= # Allocate buffers outside the Java heap.