This is what my haproxy cfg is like.  I'm doing tcp passthough.

global
  chroot  /var/lib/haproxy
  daemon  
  group  haproxy
  log  10.0.2.15 local0
  maxconn  4000
  pidfile  /var/run/haproxy.pid
  stats  socket /var/lib/haproxy/stats
  user  haproxy


defaults
  log  global
  maxconn  8000
  option  redispatch
  retries  3
  stats  enable
  timeout  http-request 10s
  timeout  queue 1m
  timeout  connect 10s
  timeout  client 1m
  timeout  server 1m
  timeout  check 10s

listen puppetserver
  bind 192.168.56.110:8140 
  mode tcp
  balance roundrobin
  option tcplog
  server puppetserver-02.vm 192.168.56.109:8140 
  server puppetserver-01.vm 192.168.56.111:8140 

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/7f8e956e-5ac9-49ee-b519-73d62cc209e6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to