Hello, I’m setting up rate limiting but I can’t get it to work properly.
It is counting all requests that are “.js” and “.css” so it’s making people blocked every 2 requests as I have many .css and .js files.
These are my current rules
(not http.request.uri.path contains “.css”) or (not http.request.uri.path contains “.js”) or (not http.request.uri.path contains “.png”) or (not http.request.uri.path contains “.ico”) or (not http.request.uri.path contains “.jpg”) or (not http.request.uri.path contains “min.js”)
But it still seems to count them… is there any alternative or fix to this? Or am I doing something wrong.