Fixed $content_length cacheability with chunked (ticket #2252).

This commit is contained in:
Maxim Dounin 2021-10-06 18:01:42 +03:00
parent 4bdba693ef
commit 19a9a22ffc
1 changed files with 4 additions and 0 deletions

View File

@ -1179,6 +1179,10 @@ ngx_http_variable_content_length(ngx_http_request_t *r,
v->no_cacheable = 0;
v->not_found = 0;
} else if (r->headers_in.chunked) {
v->not_found = 1;
v->no_cacheable = 1;
} else {
v->not_found = 1;
}