HAProxy: Difference between revisions
(Added Category:Web Server footer) |
m (SSL support in HAProxy is deprecated, as it should be, replaced those references with TLS. Linked to packages.) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
[https://www.haproxy.org/ HAProxy] is a free, very fast, and reliable reverse-proxy offering high availability, load balancing, and proxying for TCP and HTTP-based applications. | [https://www.haproxy.org/ HAProxy] is a free, very fast, and reliable reverse-proxy offering high availability, load balancing, and proxying for TCP and HTTP-based applications. | ||
A unique feature is that HAProxy can be configured for | A unique feature is that HAProxy can be configured for TLS termination to occur locally on the HAProxy server or it can be configured to pass through TLS termination at the backend via SNI. | ||
== Installation == | |||
HAProxy package is available in the Alpine Linux repositories. To install it run: | |||
{{Cmd|apk update | |||
apk add {{pkg|haproxy}}}} | |||
=== System scripts === | |||
If you are running OpenRC, then you can install with: | |||
{{Cmd|apk update | |||
apk add {{pkg|haproxy-openrc}}}} | |||
If you are running runit, s6, or dinit, (or other), then there are no scripts packaged for your init systems yet. Please feel free to contribute a package with them. | |||
=== Local Documentation === | |||
If you want local documenation, then you can install that with: | |||
{{Cmd|apk add {{pkg|haproxy-doc}}}} | |||
== See Also == | == See Also == |
Latest revision as of 23:58, 19 September 2024
HAProxy is a free, very fast, and reliable reverse-proxy offering high availability, load balancing, and proxying for TCP and HTTP-based applications.
A unique feature is that HAProxy can be configured for TLS termination to occur locally on the HAProxy server or it can be configured to pass through TLS termination at the backend via SNI.
Installation
HAProxy package is available in the Alpine Linux repositories. To install it run:
apk update apk add haproxy
System scripts
If you are running OpenRC, then you can install with:
apk update apk add haproxy-openrc
If you are running runit, s6, or dinit, (or other), then there are no scripts packaged for your init systems yet. Please feel free to contribute a package with them.
Local Documentation
If you want local documenation, then you can install that with:
apk add haproxy-doc