From 3db583cdfb36e483bc7c7db2b259e05d4fe4f53b Mon Sep 17 00:00:00 2001 From: Michal Konecny Date: Wed, 1 Oct 2025 10:18:40 +0200 Subject: [PATCH] [haproxy] Use the correct method req.body_payload is unknown, let's use req.body instead. Signed-off-by: Michal Konecny --- roles/haproxy/templates/haproxy.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/haproxy/templates/haproxy.cfg b/roles/haproxy/templates/haproxy.cfg index f83c2a4a08..9bc96dc2db 100644 --- a/roles/haproxy/templates/haproxy.cfg +++ b/roles/haproxy/templates/haproxy.cfg @@ -176,7 +176,7 @@ frontend ipsilon-frontend # Define ipsilon OpenID only instance acl path_openidc path_beg /openidc acl path_openid path_beg /openid - acl is_openid_payload req.body_payload(0,0) -m sub 'openid_identifier' + acl is_openid_payload req.body -m sub 'openid_identifier' use_backend ipsilon-backend if path_openidc use_backend ipsilon-backend-openid if path_openid