# HG changeset patch # User Valentin Bartenev # Date 1441052793 -10800 # Node ID 281863981d0b9db8abb888f4e4b663df9bda890a # Parent 8c6e71722aff56001ff50a82e3b9dc506108b4e3 Decreased the NGX_HTTP_MAX_SUBREQUESTS limit. There is no much sense in such a big value since its semantics has been changed in 06e850859a26 to limit recursive subrequests. 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 200 +#define NGX_HTTP_MAX_SUBREQUESTS 50 /* must be 2^n */ #define NGX_HTTP_LC_HEADER_LEN 32