changeset 7930:ae7c767aa491

Fixed $content_length cacheability with chunked (ticket #2252).
author Maxim Dounin <mdounin@mdounin.ru>
date Wed, 06 Oct 2021 18:01:42 +0300
parents bfad703459b4
children 055b2a847117
files src/http/ngx_http_variables.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/ngx_http_variables.c
+++ b/src/http/ngx_http_variables.c
@@ -1179,6 +1179,10 @@ ngx_http_variable_content_length(ngx_htt
         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;
     }