<div dir="ltr">Not with 204.<div>This works quite well with a partner that has an aversion to errors when they run over the limit:</div>limit_req_status 204;</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Jan 11, 2023 at 12:22 PM Maxim Dounin <<a href="mailto:mdounin@mdounin.ru">mdounin@mdounin.ru</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">Hello!<br>
<br>
On Mon, Jan 09, 2023 at 09:44:52AM -0800, Christopher Liebman wrote:<br>
<br>
> # HG changeset patch<br>
> # User Christopher B. Liebman <<a href="mailto:liebman@zod.com" target="_blank">liebman@zod.com</a>><br>
> # Date 1672855906 28800<br>
> #      Wed Jan 04 10:11:46 2023 -0800<br>
> # Node ID e438fab51202365305cace94aa25937081b051d0<br>
> # Parent  07b0bee87f32be91a33210bc06973e07c4c1dac9<br>
> limit_req_status: allow status response to be as low as 200<br>
> <br>
> No need to limit this to 400+ and it's handy to be able to return<br>
> a non-error for for this.<br>
> <br>
> diff -r 07b0bee87f32 -r e438fab51202<br>
> src/http/modules/ngx_http_limit_req_module.c<br>
> --- a/src/http/modules/ngx_http_limit_req_module.c Wed Dec 21 14:53:27 2022<br>
> +0300<br>
> +++ b/src/http/modules/ngx_http_limit_req_module.c Wed Jan 04 10:11:46 2023<br>
> -0800<br>
> @@ -97,7 +97,7 @@<br>
> <br>
> <br>
>  static ngx_conf_num_bounds_t  ngx_http_limit_req_status_bounds = {<br>
> -    ngx_conf_check_num_bounds, 400, 599<br>
> +    ngx_conf_check_num_bounds, 200, 599<br>
>  };<br>
<br>
Thank you for the patch.<br>
<br>
Unfortunately, removing limitation is not going to work, since <br>
returning non-error status codes also requires sending an actual <br>
response.<br>
<br>
The good part is that you can easily return any responses by using <br>
an error status and configuring appropriate error_page, see <br>
<a href="http://nginx.org/r/error_page" rel="noreferrer" target="_blank">http://nginx.org/r/error_page</a> for details.<br>
<br>
-- <br>
Maxim Dounin<br>
<a href="http://mdounin.ru/" rel="noreferrer" target="_blank">http://mdounin.ru/</a><br>
_______________________________________________<br>
nginx-devel mailing list<br>
<a href="mailto:nginx-devel@nginx.org" target="_blank">nginx-devel@nginx.org</a><br>
<a href="https://mailman.nginx.org/mailman/listinfo/nginx-devel" rel="noreferrer" target="_blank">https://mailman.nginx.org/mailman/listinfo/nginx-devel</a><br>
</blockquote></div>