You've already forked haproxy-wi
mirror of
https://github.com/roxy-wi/roxy-wi.git
synced 2025-12-15 11:54:05 +08:00
17 lines
452 B
Django/Jinja
17 lines
452 B
Django/Jinja
$ModLoad imudp
|
|
$UDPServerAddress 127.0.0.1
|
|
$UDPServerRun 514
|
|
module(load="builtin:omfile")
|
|
|
|
|
|
if $programname startswith 'haproxy' then {
|
|
if $syslogseverity == 6 then
|
|
action(type="omfile" file="/var/log/haproxy/access.log")
|
|
stop
|
|
if $syslogseverity <= 3 then
|
|
action(type="omfile" file="/var/log/haproxy/error.log")
|
|
stop
|
|
if $syslogseverity <= 5 then
|
|
action(type="omfile" file="/var/log/haproxy/status.log")
|
|
stop
|
|
} |