Created
October 16, 2020 19:36
-
-
Save vacax/c92bb3826561be55b78b64aed0fdcd8f to your computer and use it in GitHub Desktop.
Configuración HAProxy Basico
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
listen aplicacion_web | |
bind *:80 | |
mode http | |
stats enable | |
stats uri /stats | |
stats realm HAProxy\ Statistics | |
stats auth cda:cda | |
balance roundrobin | |
server app-01 localhost:7000 check | |
server app-02 localhost:7001 check | |
server app-03 localhost:7002 check |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment