HAProxy is a free, open-source solution providing high-availability load balancing and proxying for TCP and HTTP-based applications. It is particularly suited for very high-traffic websites and has become the de-facto standard open-source load balancer, powering a significant portion of the world's most visited online services. Its event-driven architecture allows it to handle massive traffic loads with exceptional efficiency and low latency.
Key capabilities include:
services:
haproxy:
image: bitnami/haproxy:latest
container_name: haproxy
environment:
- HAPROXY_STATS_PASSWORD=${HAPROXY_STATS_PASSWORD}
ports:
- "80:8080"
- "443:8443"
- "8404:8404"
volumes:
- ./haproxy:/opt/bitnami/haproxy/conf
restart: unless-stoppedHAPROXY_STATS_PASSWORD=your_super_secret_passwordAuto-fetched about 21 hours ago