aboutsummaryrefslogtreecommitdiff
path: root/src/http/modules/ngx_http_fastcgi_module.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-05-31 14:11:45 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-05-31 14:11:45 +0000
commitaf3b7ea9ad8f0806a9efe125c04353ef3ba12ade (patch)
tree76fd80f966e41a1a0499a4edc81f77b32a3b2f30 /src/http/modules/ngx_http_fastcgi_module.c
parente50ef56c96a2c79c1a382935faa2548f64b2c795 (diff)
downloadnginx-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.c2
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;
}