mirror of
https://github.com/openwrt/packages.git
synced 2026-01-09 19:31:21 +00:00
haproxy: update to v3.2.4
- Major version bump to the latest HAProxy v3.2 LTS release.
- Updated haproxy PKG_VERSION and PKG_HASH
- Updated build-parameters:
- Removed USE_QUIC_OPENSSL_COMPAT as OpenSSL v3.5.1+ ships with
good enough Quic support. HAProxy does not need the compat code
with these newer versions of OpenSSL anymore.
- Removed obsolete build parameters.
- Updated example configuration so it works with the new version.
- See changes: http://git.haproxy.org/?p=haproxy-3.2.git;a=shortlog
Signed-off-by: Christian Lachner <gladiac@gmail.com>
This commit is contained in:
committed by
Hannu Nyman
parent
d4f6c9c322
commit
eb333d1bee
@@ -11,6 +11,9 @@ global
|
||||
# are allowed.
|
||||
#log 10.0.0.1 daemon info
|
||||
|
||||
# Logging events to the local syslog server is possible too.
|
||||
#log /dev/log local0 info
|
||||
|
||||
# Specifiy the maximum number of allowed connections.
|
||||
maxconn 32000
|
||||
|
||||
@@ -29,7 +32,6 @@ global
|
||||
# Daemonize on startup
|
||||
daemon
|
||||
|
||||
nosplice
|
||||
# Enable debugging
|
||||
#debug
|
||||
|
||||
@@ -38,6 +40,9 @@ global
|
||||
# limits like number of open file descriptors. Default is 1.
|
||||
#nbproc 2
|
||||
|
||||
# SSL/TLS configuration. You can use the Mozilla SSL Config
|
||||
# Generator. See: https://ssl-config.mozilla.org/#server=haproxy
|
||||
|
||||
# Default parameters
|
||||
defaults
|
||||
# Default timeouts
|
||||
@@ -99,9 +104,9 @@ listen local_health_check
|
||||
# Listen on port 60000
|
||||
bind :60000
|
||||
|
||||
# This is a health check
|
||||
mode health
|
||||
# This health check requires http-mode
|
||||
mode http
|
||||
|
||||
# This is a health check
|
||||
http-request return status 200
|
||||
|
||||
# Enable HTTP-style responses: "HTTP/1.0 200 OK"
|
||||
# else just print "OK".
|
||||
#option httpchk
|
||||
|
||||
Reference in New Issue
Block a user