<div dir="ltr">Hello, I have solved the issue, the problem was because of low request limit, I had to add burst of 10 to make it work and I also changed my configuration to the following.<div><br></div><div>limit_req_zone $binary_remote_addr$request_uri zone=mylimit:10m rate=5r/s;<br></div><div>and then</div><div>limit_req zone=mylimit burst=10 nodelay;<br></div><div><br></div><div>no other settings is changed.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, Dec 27, 2020 at 12:10 AM Francis Daly <<a href="mailto:francis@daoine.org">francis@daoine.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Fri, Dec 18, 2020 at 06:54:57PM +0500, Ali Mohsin wrote:<br>
<br>
Hi there,<br>
<br>
> I have achieved this with the following code<br>
> <br>
> limit_req_zone $binary_remote_addr$v1 zone=mylimit:10m rate=3r/s;<br>
> <br>
> 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>
Where are you trying to set your CORS in headers? In this location{}<br>
block, or in a different one? Or in a server{} block?<br>
<br>
What request are you making that is handled in this location{} block?<br>
<br>
I'd expect something like a ".*" in the regex to have it match everything<br>
that starts with /api/.<br>
<br>
Cheers,<br>
<br>
        f<br>
-- <br>
Francis Daly        <a href="mailto:francis@daoine.org" target="_blank">francis@daoine.org</a><br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org" target="_blank">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" rel="noreferrer" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</blockquote></div>