Contoh konfigurasi HAProxy sederhana
Berikut adalah contoh konfigurasi HAProxy sederhana
# Configure HAProxy to listen on port 80
frontend http_front
bind *:80
stats uri /haproxy?stats
default_backend http_back
# Configure HAProxy to route requests to webserver nodes on port 8080
backend http_back
balance roundrobin
server webserver1 192.168.99.100:8080 check
server webserver2 192.168.99.101:8080 check
server webserver3 192.168.99.102:8080 check
Dari contoh konfigurasi diatas, HAProxy hanya masih run di port 80, haproxy akan menangkap traffic dari client kemudian mendistribusikan ke beberapa webserver dengan metode roundrobin. Webserver run di port 8080.
Komentar