我正在尝试使用 HAProxy 设置负载均衡器,但我不知道如何配置它。有人可以提供一个示例配置吗?
答案1
以下是示例配置:
global
slowlog_flat 100
defaults
mode http
timeout connect 5000ms
timeout client 50000ms
timeout server 50000ms
frontend http
bind *:80,*:443
default_backend servers
backend servers
balance roundrobin
server server1 192.168.1.100:80 weight 1 check
server server2 192.168.1.101:80 weight 1 check