HAProxy: Difference between revisions

From Alpine Linux
(Initial HAProxy wiki placeholder)
 
(Added HAProxy Installation section)
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


A unique feature is that HAProxy can be configured for SSL termination to occur locally on the HAProxy server or it can be configured to pass through SSL termination at the backend via SNI.
A unique feature is that HAProxy can be configured for SSL termination to occur locally on the HAProxy server or it can be configured to pass through SSL 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 haproxy}}
=== System scripts ===
If you are running OpenRC, then you can install with:
{{Cmd|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:
{{Cmd|apk add haproxy-doc}}
== See Also ==
* [https://www.haproxy.org/ HAProxy Homepage]
[[Category:Web Server]]

Latest revision as of 15:50, 18 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 SSL termination to occur locally on the HAProxy server or it can be configured to pass through SSL 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

See Also