comparison src/http/ngx_http_special_response.c @ 380:bc21d9cd9c54 NGINX_0_7_2

nginx 0.7.2 *) Feature: now nginx supports EDH key exchange ciphers. *) Feature: the "ssl_dhparam" directive. *) Feature: the $ssl_client_cert variable. Thanks to Manlio Perillo. *) Bugfix: after changing URI via a "rewrite" directive nginx did not search a new location; bug appeared in 0.7.1. Thanks to Maxim Dounin. *) Bugfix: nginx could not be built without PCRE library; bug appeared in 0.7.1. *) Bugfix: when a request to a directory was redirected with the slash added, nginx dropped a query string from the original request.
author Igor Sysoev <http://sysoev.ru>
date Mon, 16 Jun 2008 00:00:00 +0400
parents 820f6378fc00
children 349057ecf4d5
comparison
equal deleted inserted replaced
379:9d9dad60269f 380:bc21d9cd9c54
330 ngx_int_t rc; 330 ngx_int_t rc;
331 ngx_uint_t i, err; 331 ngx_uint_t i, err;
332 ngx_http_err_page_t *err_page; 332 ngx_http_err_page_t *err_page;
333 ngx_http_core_loc_conf_t *clcf; 333 ngx_http_core_loc_conf_t *clcf;
334 334
335 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 335 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
336 "http special response: %d, \"%V\"", error, &r->uri); 336 "http special response: %d, \"%V?%V\"",
337 error, &r->uri, &r->args);
337 338
338 rc = ngx_http_discard_request_body(r); 339 rc = ngx_http_discard_request_body(r);
339 340
340 if (rc == NGX_HTTP_INTERNAL_SERVER_ERROR) { 341 if (rc == NGX_HTTP_INTERNAL_SERVER_ERROR) {
341 error = NGX_HTTP_INTERNAL_SERVER_ERROR; 342 error = NGX_HTTP_INTERNAL_SERVER_ERROR;