-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhaproxy.cfg
More file actions
39 lines (27 loc) · 805 Bytes
/
haproxy.cfg
File metadata and controls
39 lines (27 loc) · 805 Bytes
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
global
pidfile /var/run/haproxy-id-ui.pid
user root
maxconn 2048
defaults
mode http
timeout connect 5000ms
timeout client 30000ms
timeout server 30000ms
stats enable
stats auth admin:password
stats uri /monitor
stats refresh 5s
retries 5
option httpchk GET /status
option redispatch
option httpclose
option abortonclose
option forwardfor
option http-server-close
balance roundrobin
frontend actn-api-ui
bind :${PORT}
monitor-uri /haproxy
default_backend b_ui_render
backend b_ui_render
server srv_ui_render_1 127.0.0.1:3001