diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-05-31 14:11:45 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-05-31 14:11:45 +0000 |
commit | af3b7ea9ad8f0806a9efe125c04353ef3ba12ade (patch) | |
tree | 76fd80f966e41a1a0499a4edc81f77b32a3b2f30 /src/http/modules/ngx_http_fastcgi_module.c | |
parent | e50ef56c96a2c79c1a382935faa2548f64b2c795 (diff) | |
download | nginx-release-0.3.49.tar.gz nginx-release-0.3.49.zip |
nginx-0.3.49-RELEASE importrelease-0.3.49
*) Bugfix: in the "set" directive.
*) Bugfix: if two or more FastCGI subrequests was in SSI, then first
subrequest output was included instead of second and following
subrequests.
Diffstat (limited to 'src/http/modules/ngx_http_fastcgi_module.c')
-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 82388a6a8..8663f881e 100644 --- a/src/http/modules/ngx_http_fastcgi_module.c +++ b/src/http/modules/ngx_http_fastcgi_module.c @@ -1476,7 +1476,7 @@ ngx_http_fastcgi_add_variables(ngx_conf_t *cf) ngx_http_variable_t *var; var = ngx_http_add_variable(cf, &ngx_http_fastcgi_script_name, - NGX_HTTP_VAR_NOHASH); + NGX_HTTP_VAR_NOHASH|NGX_HTTP_VAR_NOCACHABLE); if (var == NULL) { return NGX_ERROR; } |