<div dir="ltr"># HG changeset patch<br># User Christopher B. Liebman <<a href="mailto:liebman@zod.com">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 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 +0300<br>+++ b/src/http/modules/ngx_http_limit_req_module.c      Wed Jan 04 10:11:46 2023 -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> <br></div>