# HG changeset patch # User Maxim Dounin # Date 1330440863 0 # Node ID cb1d3b48a84864ea5299e372f5c51fdd8a239c2b # Parent 9dfe02dd0f11c5d6b262b0964275a56b219738fb Raised simultaneous subrequest limit from 50 to 200. It wasn't enforced for a long time, and there are reports that people use up to 100 simultaneous subrequests now. As this is a safety limit to prevent loops, it's raised accordingly. diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -10,7 +10,7 @@ #define NGX_HTTP_MAX_URI_CHANGES 10 -#define NGX_HTTP_MAX_SUBREQUESTS 50 +#define NGX_HTTP_MAX_SUBREQUESTS 200 /* must be 2^n */ #define NGX_HTTP_LC_HEADER_LEN 32