From 0b12f4f08575f6e5a2c791170332cf788d3e2a0e Mon Sep 17 00:00:00 2001 From: sullrich Date: Wed, 16 Dec 2009 11:42:16 -0500 Subject: Add remote syslog option --- config/haproxy/haproxy.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'config/haproxy/haproxy.inc') diff --git a/config/haproxy/haproxy.inc b/config/haproxy/haproxy.inc index 0890dbc7..769f007f 100644 --- a/config/haproxy/haproxy.inc +++ b/config/haproxy/haproxy.inc @@ -109,7 +109,10 @@ function haproxy_configure() { if(is_array($a_global)) { fwrite ($fd, "global\n"); fwrite ($fd, "\tmaxconn\t\t\t".$a_global['maxconn']."\n"); - fwrite ($fd, "\tlog\t\t\t127.0.0.1 local0\n"); + if($a_global['remotesyslog']) + fwrite ($fd, "\tlog\t\t\t{$a_global['remotesyslog']}\n"); + else + fwrite ($fd, "\tlog\t\t\tglobal\n"); fwrite ($fd, "\tuid\t\t\t80\n"); fwrite ($fd, "\tgid\t\t\t80\n"); $numprocs = trim(`/sbin/sysctl kern.smp.cpus | cut -d" " -f2`); -- cgit v1.2.3