<div dir="ltr">Hello, I want to setup limit requests on my API server but I want separate limit to every separate link.<br>e.g i'm requesting to /api/link1 and i'm being blocked<div>I should be able to use /api/link2 normally if I don't exceed the limit.</div><div><br></div><div>I have achieved this with the following code</div><div><br></div><div>limit_req_zone $binary_remote_addr$v1 zone=mylimit:10m rate=3r/s;<br></div><div><br></div><div>location ~ "^/api/(?<v1>)$" {<br>limit_req zone=mylimit;<br><br>but i'm unable to set my CORS in headers and my APIs are inaccessible.<br><br></div><div>any help would be appreciated</div><div><br></div><div>Thanks</div></div>