aboutsummaryrefslogtreecommitdiffstats
path: root/config/haproxy/haproxy.inc
diff options
context:
space:
mode:
Diffstat (limited to 'config/haproxy/haproxy.inc')
-rw-r--r--config/haproxy/haproxy.inc5
1 files changed, 4 insertions, 1 deletions
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`);