comparison src/http/ngx_http_special_response.c @ 644:6f21ae02fb01 NGINX_1_1_6

nginx 1.1.6 *) Change in internal API: now module context data are cleared while internal redirect to named location. Requested by Yichun Zhang. *) Change: if a server in an upstream failed, only one request will be sent to it after fail_timeout; the server will be considered alive if it will successfully respond to the request. *) Change: now the 0x7F-0x1F characters are escaped as \xXX in an access_log. *) Feature: "proxy/fastcgi/scgi/uwsgi_ignore_headers" directives support the following additional values: X-Accel-Limit-Rate, X-Accel-Buffering, X-Accel-Charset. *) Feature: decrease of memory consumption if SSL is used. *) Bugfix: some UTF-8 characters were processed incorrectly. Thanks to Alexey Kuts. *) Bugfix: the ngx_http_rewrite_module directives specified at "server" level were executed twice if no matching locations were defined. *) Bugfix: a socket leak might occurred if "aio sendfile" was used. *) Bugfix: connections with fast clients might be closed after send_timeout if file AIO was used. *) Bugfix: in the ngx_http_autoindex_module. *) Bugfix: the module ngx_http_mp4_module did not support seeking on 32-bit platforms.
author Igor Sysoev <http://sysoev.ru>
date Mon, 17 Oct 2011 00:00:00 +0400
parents d3cf6c6b0043
children d0f7a625f27c
comparison
equal deleted inserted replaced
643:a4bb0b481f6c 644:6f21ae02fb01
373 case NGX_HTTP_INTERNAL_SERVER_ERROR: 373 case NGX_HTTP_INTERNAL_SERVER_ERROR:
374 r->keepalive = 0; 374 r->keepalive = 0;
375 } 375 }
376 } 376 }
377 377
378 if (r->lingering_close == 1) { 378 if (r->lingering_close) {
379 switch (error) { 379 switch (error) {
380 case NGX_HTTP_BAD_REQUEST: 380 case NGX_HTTP_BAD_REQUEST:
381 case NGX_HTTP_TO_HTTPS: 381 case NGX_HTTP_TO_HTTPS:
382 case NGX_HTTPS_CERT_ERROR: 382 case NGX_HTTPS_CERT_ERROR:
383 case NGX_HTTPS_NO_CERT: 383 case NGX_HTTPS_NO_CERT:
580 580
581 location->hash = 1; 581 location->hash = 1;
582 ngx_str_set(&location->key, "Location"); 582 ngx_str_set(&location->key, "Location");
583 location->value = uri; 583 location->value = uri;
584 584
585 ngx_http_clear_location(r);
586
585 r->headers_out.location = location; 587 r->headers_out.location = location;
586 588
587 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); 589 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
588 590
589 if (clcf->msie_refresh && r->headers_in.msie) { 591 if (clcf->msie_refresh && r->headers_in.msie) {