Sha256: 8d19d3d8c2b8c3f768f41832b665037c61ef8bf3b3d95de647145f79fb627191

Contents?: true

Size: 850 Bytes

Versions: 5

Compression:

Stored size: 850 Bytes

Contents

global
  daemon
  maxconn       4096      # total max connections (dependent on ulimit)
  nbproc        1         # number of processing cores
  user          haproxy
  chroot        /var/run/haproxy  
  log 127.0.0.1 local0 debug
  pidfile /var/run/haproxy.pid
 
defaults
  mode              http
  log               global # Log to the global log
  clitimeout 150000
  srvtimeout 150000
  contimeout 30000
 
  option            httplog
  option            httpclose     # disable keepalive (HAProxy does not yet support the HTTP keep-alive mode)
  option            forwardfor    # enable insert of X-Forwarded-For headers
  retries 3  
  
  balance roundrobin            # each server is used in turns, according to assigned weight
  
  
  stats uri /haproxy
  stats realm Statistics\ for\ poolparty

listen web_proxy 0.0.0.0::host_port
  :servers

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
auser-poolparty-0.0.9 config/haproxy.conf
auser-poolparty-0.1.0 config/haproxy.conf
auser-poolparty-0.1.1 config/haproxy.conf
auser-poolparty-0.1.2 config/haproxy.conf
jtzemp-poolparty-0.1.2 config/haproxy.conf