diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-04-21 10:36:01 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-04-21 10:36:01 +0000 |
commit | 9a354261f7646cf9bdac8b23f3ed590784c621d6 (patch) | |
tree | beeaaf4fa601bf3031ef6ab83d5984634ad9d3f1 /src | |
parent | 2f7f95381d00380ccdf67dafa1949a90405ab9cd (diff) | |
download | nginx-9a354261f7646cf9bdac8b23f3ed590784c621d6.tar.gz nginx-9a354261f7646cf9bdac8b23f3ed590784c621d6.zip |
fix fastcgi_cache_min_uses
Diffstat (limited to 'src')
-rw-r--r-- | src/http/modules/ngx_http_fastcgi_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_fastcgi_module.c b/src/http/modules/ngx_http_fastcgi_module.c index b0e959511..a065616b9 100644 --- a/src/http/modules/ngx_http_fastcgi_module.c +++ b/src/http/modules/ngx_http_fastcgi_module.c @@ -330,7 +330,7 @@ static ngx_command_t ngx_http_fastcgi_commands[] = { offsetof(ngx_http_fastcgi_loc_conf_t, upstream.cache_valid), NULL }, - { ngx_string("proxy_cache_min_uses"), + { ngx_string("fastcgi_cache_min_uses"), NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, ngx_conf_set_num_slot, NGX_HTTP_LOC_CONF_OFFSET, |