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")); }