Home
last modified time | relevance | path

Searched refs:cache_methods (Results 1 – 6 of 6) sorted by relevance

/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_scgi_module.c299 offsetof(ngx_http_scgi_loc_conf_t, upstream.cache_methods),
1494 if (conf->upstream.cache_methods == 0) { in ngx_http_scgi_merge_loc_conf()
1495 conf->upstream.cache_methods = prev->upstream.cache_methods; in ngx_http_scgi_merge_loc_conf()
1498 conf->upstream.cache_methods |= NGX_HTTP_GET|NGX_HTTP_HEAD; in ngx_http_scgi_merge_loc_conf()
H A Dngx_http_uwsgi_module.c360 offsetof(ngx_http_uwsgi_loc_conf_t, upstream.cache_methods),
1715 if (conf->upstream.cache_methods == 0) { in ngx_http_uwsgi_merge_loc_conf()
1716 conf->upstream.cache_methods = prev->upstream.cache_methods; in ngx_http_uwsgi_merge_loc_conf()
1719 conf->upstream.cache_methods |= NGX_HTTP_GET|NGX_HTTP_HEAD; in ngx_http_uwsgi_merge_loc_conf()
H A Dngx_http_fastcgi_module.c449 offsetof(ngx_http_fastcgi_loc_conf_t, upstream.cache_methods),
3020 if (conf->upstream.cache_methods == 0) { in ngx_http_fastcgi_merge_loc_conf()
3021 conf->upstream.cache_methods = prev->upstream.cache_methods; in ngx_http_fastcgi_merge_loc_conf()
3024 conf->upstream.cache_methods |= NGX_HTTP_GET|NGX_HTTP_HEAD; in ngx_http_fastcgi_merge_loc_conf()
H A Dngx_http_proxy_module.c526 offsetof(ngx_http_proxy_loc_conf_t, upstream.cache_methods),
3172 if (conf->upstream.cache_methods == 0) { in ngx_http_proxy_merge_loc_conf()
3173 conf->upstream.cache_methods = prev->upstream.cache_methods; in ngx_http_proxy_merge_loc_conf()
3176 conf->upstream.cache_methods |= NGX_HTTP_GET|NGX_HTTP_HEAD; in ngx_http_proxy_merge_loc_conf()
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_upstream.h200 ngx_uint_t cache_methods; member
H A Dngx_http_upstream.c827 if (!(r->method & u->conf->cache_methods)) { in ngx_http_upstream_cache()