10 lines
286 B
Text
10 lines
286 B
Text
|
# Create an additional socket in haproxy's chroot in order to allow logging via
|
||
|
# /dev/log to chroot'ed HAProxy processes
|
||
|
$AddUnixListenSocket /var/lib/haproxy/dev/log
|
||
|
|
||
|
# Send HAProxy messages to a dedicated logfile
|
||
|
:programname, startswith, "haproxy" {
|
||
|
/var/log/haproxy.log
|
||
|
stop
|
||
|
}
|