comparison src/http/ngx_http_request.c @ 172:1b490fc19afa NGINX_0_3_33

nginx 0.3.33 *) Feature: the "http_503" parameter of the "proxy_next_upstream" or "fastcgi_next_upstream" directives. *) Bugfix: ngx_http_perl_module did not work with inlined in the configuration code, if it was not started with the "sub" word. *) Bugfix: in the "post_action" directive.
author Igor Sysoev <http://sysoev.ru>
date Wed, 15 Mar 2006 00:00:00 +0300
parents b922c231a392
children 87699398f955
comparison
equal deleted inserted replaced
171:d4717557d48d 172:1b490fc19afa
2247 2247
2248 if (clcf->post_action.data == NULL) { 2248 if (clcf->post_action.data == NULL) {
2249 return NGX_DECLINED; 2249 return NGX_DECLINED;
2250 } 2250 }
2251 2251
2252 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
2253 "post action: \"%V\"", &clcf->post_action);
2254
2252 r->http_version = NGX_HTTP_VERSION_9; 2255 r->http_version = NGX_HTTP_VERSION_9;
2253 r->header_only = 1; 2256 r->header_only = 1;
2254 2257
2255 ngx_http_internal_redirect(r, &clcf->post_action, NULL); 2258 ngx_http_internal_redirect(r, &clcf->post_action, NULL);
2256 2259