comparison src/http/modules/ngx_http_scgi_module.c @ 5738:c95d7882dfc9

Upstream: cache revalidation using If-None-Match.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 26 Jun 2014 02:35:01 +0400
parents d15822784cf9
children f3df4e420ae7
comparison
equal deleted inserted replaced
5737:44b9ab7752e3 5738:c95d7882dfc9
377 377
378 static ngx_keyval_t ngx_http_scgi_cache_headers[] = { 378 static ngx_keyval_t ngx_http_scgi_cache_headers[] = {
379 { ngx_string("HTTP_IF_MODIFIED_SINCE"), 379 { ngx_string("HTTP_IF_MODIFIED_SINCE"),
380 ngx_string("$upstream_cache_last_modified") }, 380 ngx_string("$upstream_cache_last_modified") },
381 { ngx_string("HTTP_IF_UNMODIFIED_SINCE"), ngx_string("") }, 381 { ngx_string("HTTP_IF_UNMODIFIED_SINCE"), ngx_string("") },
382 { ngx_string("HTTP_IF_NONE_MATCH"), ngx_string("") }, 382 { ngx_string("HTTP_IF_NONE_MATCH"), ngx_string("$upstream_cache_etag") },
383 { ngx_string("HTTP_IF_MATCH"), ngx_string("") }, 383 { ngx_string("HTTP_IF_MATCH"), ngx_string("") },
384 { ngx_string("HTTP_RANGE"), ngx_string("") }, 384 { ngx_string("HTTP_RANGE"), ngx_string("") },
385 { ngx_string("HTTP_IF_RANGE"), ngx_string("") }, 385 { ngx_string("HTTP_IF_RANGE"), ngx_string("") },
386 { ngx_null_string, ngx_null_string } 386 { ngx_null_string, ngx_null_string }
387 }; 387 };