diff options
author | Valentin Bartenev <vbart@nginx.com> | 2015-08-31 23:26:33 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2015-08-31 23:26:33 +0300 |
commit | 5e0b936a07bf9a2c4cbbe353a9a0277c782ffbf6 (patch) | |
tree | 93cf7fbec09b3c4371bd0efde3510493a6e55dcf /src/http/ngx_http_request.h | |
parent | 4ec67cf86fe3ae09692969b175978b57f8b180ad (diff) | |
download | nginx-5e0b936a07bf9a2c4cbbe353a9a0277c782ffbf6.tar.gz nginx-5e0b936a07bf9a2c4cbbe353a9a0277c782ffbf6.zip |
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.
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 7e56c399d..eac8b6d0b 100644 --- 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 |