-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhaproxy.cfg
46 lines (41 loc) · 1019 Bytes
/
haproxy.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
global
log /dev/log local0
log /dev/log local1 notice
maxconn 4096
stats socket /var/run/haproxy/admin.sock mode 655 level admin
stats timeout 30s
defaults
log global
mode http
option httplog
option dontlognull
timeout connect 5000
timeout client 50000
timeout server 50000
frontend balancer
bind 0.0.0.0:7080
mode http
use_backend google if { path_beg /google }
use_backend partial if { path_beg /partial }
default_backend web_backends
backend partial
mode http
balance roundrobin
option forwardfor
server cloudflare 1.1.1.1:80 check
server bogus 127.0.0.1:12345 check
backend google
mode http
balance roundrobin
option forwardfor
server google1 google.com:80 check
server google2 google.com:80 check
backend web_backends
mode http
balance roundrobin
option forwardfor
#option httpchk GET /
option httpchk HEAD /healthcheck.html HTTP/1.1
server weba localhost:8080 check
server webb localhost:8081 check
server webc localhost:8082 check