HAProxy Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 13: Line 13:
===SSL Pass-Through===
===SSL Pass-Through===


When HAProxy is configured with ''SSL pass-through'', the backend servers handle the SSL connection, rather than the load balancer. The load balancer will just simply proxy the request off to its backend server. The connection will remain encrypted, and the load balancer cannot see what it contains.
When HAProxy is configured with ''SSL pass-through'', the backend servers handle the SSL connection, rather than the load balancer. The load balancer will just simply proxy the request off to its backend server. The connection will remain encrypted, and the load balancer cannot see what it contains. The frontend will have to be configured in "tcp" mode.


{{Internal|HAProxy SSL Pass-Through Configuration|HAProxy SSL Pass-Through Configuration}}
{{Internal|HAProxy SSL Pass-Through Configuration|HAProxy SSL Pass-Through Configuration}}

Revision as of 01:50, 4 July 2017

Internal

SSL Support

https://serversforhackers.com/using-ssl-certificates-with-haproxy

HAProxy can be configured to terminate the SSL connection or to pass it through the backend server.

SSL Termination

SSL Pass-Through

When HAProxy is configured with SSL pass-through, the backend servers handle the SSL connection, rather than the load balancer. The load balancer will just simply proxy the request off to its backend server. The connection will remain encrypted, and the load balancer cannot see what it contains. The frontend will have to be configured in "tcp" mode.

HAProxy SSL Pass-Through Configuration