From 99783398941e4b278decb6056d1f795702a03cbc Mon Sep 17 00:00:00 2001 From: Jonathan Visser Date: Thu, 29 Jan 2026 15:11:31 +0100 Subject: [PATCH] Add 127.0.0.1 to per-IP rate limiting allowlist example --- ...how-to-resolve-rate-limited-requests-429-too-many-requests.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/hypernode-platform/nginx/how-to-resolve-rate-limited-requests-429-too-many-requests.md b/docs/hypernode-platform/nginx/how-to-resolve-rate-limited-requests-429-too-many-requests.md index 04558761..c1a46e28 100644 --- a/docs/hypernode-platform/nginx/how-to-resolve-rate-limited-requests-429-too-many-requests.md +++ b/docs/hypernode-platform/nginx/how-to-resolve-rate-limited-requests-429-too-many-requests.md @@ -135,6 +135,7 @@ In some cases, it might be necessary to exclude specific IP addresses from the p # 1) Mark IPs/CIDRs that should be exempt from per‑IP limiting geo $limit_conn_ip_allow { default 1; # 1 = enforce limit + 127.0.0.1 0; # Whitelist internal automations 1.2.3.4 0; # 0 = exempt }