From beb9c29fa23fb92153c53e8736aa4091d640341a Mon Sep 17 00:00:00 2001 From: Techassi Date: Tue, 14 Jul 2026 17:53:08 +0200 Subject: [PATCH] chore: Adjust rate limit to 250r/min --- netlify.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netlify.toml b/netlify.toml index 134b36ed4..02ee4c35f 100644 --- a/netlify.toml +++ b/netlify.toml @@ -2,12 +2,12 @@ command = "make netlify-build" publish = "build/site" -# Rate limiting across the whole page. 25 request per 60 seconds aggregated by client IP. +# Rate limiting across the whole page. 250 request per 60 seconds aggregated by client IP. [[redirects]] from = "/*" to = "/:splat" [redirects.rate_limit] - window_limit = 25 + window_limit = 250 window_size = 60 aggregate_by = ["ip"]