This blog describes how to configure HAProxy as a load balancer with WSO2 Application Server cluster HAProxy 1.5 WSO2 Application Server 5.2.1 Setup WSO2 AS Cluster This cluster consist of 3 WSO2 Application Server instances, as 3 worker nodes and 1 manager node, where 1 node work as both worker and manager. HAProxy performs load balancing with this cluster by distributing incoming requests to the worker nodes via HTTP/S on port 80/443. All admin requests can be sent to the manager node directly via HTTPs on port 9444 or through the HAProxy via 443 port depending on how we configure the manager node. Click here to see how to setup WSO2 Application Server cluster Setup HAProxy load balancer * Install HAProxy $ sudo add-apt-repository ppa:vbernat/haproxy-1.5 $ sudo apt-get update $ sudo apt-get install haproxy Need version 1.5 since native SSL support was implemented in 1.5 * Set ENABLED to 1 if you want the init script to ...