haproxy: fix missing admin ACL in stats module access permissions
gitea/ansible-roles/pipeline/head This commit looks good Details

This commit is contained in:
William Hirigoyen 2023-01-11 16:14:46 +01:00
parent 0413f93852
commit 417734eed2
2 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* evolinux-base: ensure dbus is started and enabled (not by default in the case of an offline netinst) * evolinux-base: ensure dbus is started and enabled (not by default in the case of an offline netinst)
* elasticsearch : use logrotate for garbage collector logs instead of breaking compression cron * elasticsearch : use logrotate for garbage collector logs instead of breaking compression cron
* docker-host: fix type in daemon.json and remove host configuration that is already in the systemd service by default * docker-host: fix type in daemon.json and remove host configuration that is already in the systemd service by default
* haproxy: fix missing admin ACL in stats module access permissions
### Removed ### Removed

View File

@ -63,7 +63,7 @@ listen stats
acl stats_users http_auth(stats_users) acl stats_users http_auth(stats_users)
stats http-request auth realm "HAProxy admin" if !stats_access_ips !stats_users stats http-request auth realm "HAProxy admin" if !stats_access_ips !stats_users
{% else %} {% else %}
stats http-request deny if !stats_access_ips stats http-request deny if !stats_access_ips !stats_admin_ips
{% endif %} {% endif %}
http-request set-log-level silent http-request set-log-level silent