Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# HAProxy image with certbot for certificate generation and renewal
#
# -----------------------------------------------------------------------------------------------
FROM haproxy:2.9-alpine
FROM haproxy:3.2-alpine
LABEL maintainer="support@openremote.io"

USER root
Expand Down
2 changes: 1 addition & 1 deletion haproxy.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ listen mqtt

.if defined(MQTT_RATE_LIMIT)
# Rate limiting
acl too_fast fe_sess_rate ge "${MQTT_RATE_LIMIT}"
acl too_fast fe_sess_rate ge "${MQTT_RATE_LIMIT-0}"
tcp-request connection reject if too_fast
.endif

Expand Down
Loading