From 5fcfc8e4f099543e29cf6b3c0e90ec649faf2dbe Mon Sep 17 00:00:00 2001 From: Jon Torre <78599298+JTorreG@users.noreply.github.com> Date: Wed, 8 Oct 2025 14:59:39 +0100 Subject: [PATCH] fix: Remove trailing slash from proxy_pass URL Remove trailing slash from proxy_pass URL closes #1232 --- content/waf/install/docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/waf/install/docker.md b/content/waf/install/docker.md index 5b0964790..8cfbc6e80 100644 --- a/content/waf/install/docker.md +++ b/content/waf/install/docker.md @@ -381,7 +381,7 @@ server { client_max_body_size 0; default_type text/html; - proxy_pass http://127.0.0.1:8080/; + proxy_pass http://127.0.0.1:8080; } } @@ -1323,4 +1323,4 @@ F5 WAF for NGINX should now be operational, and you can move onto [Post-installa ## Next steps -{{< include "waf/install-next-steps.md" >}} \ No newline at end of file +{{< include "waf/install-next-steps.md" >}}