Difference between revisions of "HAProxy"

From air
Jump to navigation Jump to search
(Created page with "http://www.haproxy.org/ ''HAProxy is a free, very fast and reliable solution offering high availability, load balancing, and proxying for TCP and HTTP-based applications. It i...")
 
Line 37: Line 37:
 
=More=
 
=More=
 
* DDOS http://blog.haproxy.com/2012/02/27/use-a-load-balancer-as-a-first-row-of-defense-against-ddos/
 
* DDOS http://blog.haproxy.com/2012/02/27/use-a-load-balancer-as-a-first-row-of-defense-against-ddos/
  +
* [[Docker]] http://blog.haproxy.com/2015/11/17/haproxy-and-container-ip-changes-in-docker/
  +
* How to Monitor HAProxy with the [[ELK]] Stack

Revision as of 23:22, 22 March 2016

http://www.haproxy.org/ HAProxy is a free, very fast and reliable solution offering high availability, load balancing, and proxying for TCP and HTTP-based applications. It is particularly suited for very high traffic web sites and powers quite a number of the world's most visited ones. Over the years it has become the de-facto standard opensource load balancer, is now shipped with most mainstream Linux distributions, and is often deployed by default in cloud platforms.

Installation


sudo add-apt-repository ppa:vbernat/haproxy-1.6
sudo apt-get update
sudo apt-get install haproxy
sudo service haproxy status

# voir le log de HAproxy
tail -f /var/log/haproxy.log

HAHOST=haproxy
HAHOST=localhost

Open http://localhost/haproxy?stats

Configuration en SSL Pass-throught

TODO


Configuration en SSL Terminaison

TODO


Configuration en SSL Terminaison avec authentification mutuelle

TODO


Configuration HA avec Keepalived

More