From 37061442d251cfdf3a11fdd6563f7e35286e51a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Thu, 25 Sep 2025 09:22:16 +0200 Subject: [PATCH] varnish config --- deploy/varnish/default.vcl.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/varnish/default.vcl.template b/deploy/varnish/default.vcl.template index b7113f9..e1382c9 100644 --- a/deploy/varnish/default.vcl.template +++ b/deploy/varnish/default.vcl.template @@ -17,8 +17,8 @@ acl purge { # ===== RECV ===== sub vcl_recv { - # RATE LIMIT: 50 żądań / 10s, blokada 60s - if (vsthrottle.is_denied(client.identity, 50, 10s, 60s)) { + # RATE LIMIT: 200 żądań / 10s, blokada 60s + if (vsthrottle.is_denied(client.identity, 200, 10s, 60s)) { return (synth(429, "Too Many Requests")); }