comparison src/http/ngx_http_upstream.h @ 5951:610832763648

Upstream: added variables support to proxy_cache and friends.
author Valentin Bartenev <vbart@nginx.com>
date Mon, 22 Dec 2014 12:59:09 +0300
parents 634da79665d3
children 0a198a517eaf
comparison
equal deleted inserted replaced
5950:eaeecf00d5d7 5951:610832763648
174 174
175 ngx_http_upstream_local_t *local; 175 ngx_http_upstream_local_t *local;
176 176
177 #if (NGX_HTTP_CACHE) 177 #if (NGX_HTTP_CACHE)
178 ngx_shm_zone_t *cache_zone; 178 ngx_shm_zone_t *cache_zone;
179 ngx_http_complex_value_t *cache_value;
179 180
180 ngx_uint_t cache_min_uses; 181 ngx_uint_t cache_min_uses;
181 ngx_uint_t cache_use_stale; 182 ngx_uint_t cache_use_stale;
182 ngx_uint_t cache_methods; 183 ngx_uint_t cache_methods;
183 184
298 299
299 ngx_output_chain_ctx_t output; 300 ngx_output_chain_ctx_t output;
300 ngx_chain_writer_ctx_t writer; 301 ngx_chain_writer_ctx_t writer;
301 302
302 ngx_http_upstream_conf_t *conf; 303 ngx_http_upstream_conf_t *conf;
304 #if (NGX_HTTP_CACHE)
305 ngx_array_t *caches;
306 #endif
303 307
304 ngx_http_upstream_headers_in_t headers_in; 308 ngx_http_upstream_headers_in_t headers_in;
305 309
306 ngx_http_upstream_resolved_t *resolved; 310 ngx_http_upstream_resolved_t *resolved;
307 311