68 lines
2.4 KiB
INI
68 lines
2.4 KiB
INI
#---------------------------------------------------------------------
|
|
# Example configuration for a possible web application. See the
|
|
# full configuration options online.
|
|
#
|
|
# http://haproxy.1wt.eu/download/1.3/doc/configuration.txt
|
|
#
|
|
# or locally in /usr/share/doc/haproxy-1.3.20/
|
|
#
|
|
#---------------------------------------------------------------------
|
|
|
|
#---------------------------------------------------------------------
|
|
# Global settings
|
|
#---------------------------------------------------------------------
|
|
global
|
|
log 127.0.0.1 local2
|
|
chroot /var/lib/haproxy
|
|
pidfile /var/run/haproxy.pid
|
|
maxconn 4000
|
|
user haproxy
|
|
group haproxy
|
|
daemon
|
|
|
|
#---------------------------------------------------------------------
|
|
# common defaults that all the 'listen' and 'backend' sections will
|
|
# use if not designated in their block
|
|
#---------------------------------------------------------------------
|
|
defaults
|
|
mode http
|
|
log global
|
|
option dontlognull
|
|
option httpclose
|
|
option httplog
|
|
option forwardfor
|
|
option redispatch
|
|
timeout connect 10000 # default 10 second time out if a backend is not found
|
|
timeout client 300000
|
|
timeout server 300000
|
|
maxconn 60000
|
|
retries 3
|
|
|
|
#---------------------------------------------------------------------
|
|
# main frontend which proxys to the backends
|
|
#---------------------------------------------------------------------
|
|
frontend main *:5000
|
|
acl url_static path_beg -i /static /images /javascript /stylesheets
|
|
acl url_static path_end -i .jpg .gif .png .css .js
|
|
|
|
use_backend static if url_static
|
|
default_backend app
|
|
|
|
#---------------------------------------------------------------------
|
|
# static backend for serving up images, stylesheets and such
|
|
#---------------------------------------------------------------------
|
|
backend static
|
|
balance roundrobin
|
|
server static 127.0.0.1:4331 check
|
|
|
|
#---------------------------------------------------------------------
|
|
# round robin balancing between the various backends
|
|
#---------------------------------------------------------------------
|
|
backend app
|
|
balance roundrobin
|
|
server app1 127.0.0.1:5001 check
|
|
server app2 127.0.0.1:5002 check
|
|
server app3 127.0.0.1:5003 check
|
|
server app4 127.0.0.1:5004 check
|
|
|