diff options
author | Roman Arutyunyan <arut@nginx.com> | 2015-12-07 16:30:48 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2015-12-07 16:30:48 +0300 |
commit | 8ba626ccd71cbd704c7c69928d1d6fe58fd0445f (patch) | |
tree | 6869ddd10bdbce26f4a6239018c488f40ed231fd /src/http/ngx_http_request.c | |
parent | 1b478c50deba414dae292c9a5f0f07114b9fbc81 (diff) | |
download | nginx-8ba626ccd71cbd704c7c69928d1d6fe58fd0445f.tar.gz nginx-8ba626ccd71cbd704c7c69928d1d6fe58fd0445f.zip |
Slice filter.
Splits a request into subrequests, each providing a specific range of response.
The variable "$slice_range" must be used to set subrequest range and proper
cache key. The directive "slice" sets slice size.
The following example splits requests into 1-megabyte cacheable subrequests.
server {
listen 8000;
location / {
slice 1m;
proxy_cache cache;
proxy_cache_key $uri$is_args$args$slice_range;
proxy_set_header Range $slice_range;
proxy_cache_valid 200 206 1h;
proxy_pass http://127.0.0.1:9000;
}
}
Diffstat (limited to 'src/http/ngx_http_request.c')
0 files changed, 0 insertions, 0 deletions