comparison src/http/modules/ngx_http_proxy_module.c @ 558:2da4537168f8 NGINX_0_8_31

nginx 0.8.31 *) Feature: now the "error_page" directive may redirect the 301 and 302 responses. *) Feature: the $geoip_city_continent_code, $geoip_latitude, and $geoip_longitude variables. Thanks to Arvind Sundararajan. *) Feature: now the ngx_http_image_filter_module deletes always EXIF and other application specific data if the data consume more than 5% of a JPEG file. *) Bugfix: nginx closed a connection if a cached response had an empty body. Thanks to Piotr Sikora. *) Bugfix: nginx might not be built by gcc 4.x if the -O2 or higher optimization option was used. Thanks to Maxim Dounin and Denis F. Latypoff. *) Bugfix: regular expressions in location were always tested in case-sensitive mode; the bug had appeared in 0.8.25. *) Bugfix: nginx cached a 304 response if there was the "If-None-Match" header line in a proxied request. Thanks to Tim Dettrick and David Kostal. *) Bugfix: nginx/Windows tried to delete a temporary file twice if the file should replace an already existent file.
author Igor Sysoev <http://sysoev.ru>
date Wed, 23 Dec 2009 00:00:00 +0300
parents 5c576ea5dbd9
children be4f34123024
comparison
equal deleted inserted replaced
557:72104cd120ec 558:2da4537168f8
229 offsetof(ngx_http_proxy_loc_conf_t, upstream.ignore_client_abort), 229 offsetof(ngx_http_proxy_loc_conf_t, upstream.ignore_client_abort),
230 NULL }, 230 NULL },
231 231
232 { ngx_string("proxy_bind"), 232 { ngx_string("proxy_bind"),
233 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, 233 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
234 ngx_http_upsteam_bind_set_slot, 234 ngx_http_upstream_bind_set_slot,
235 NGX_HTTP_LOC_CONF_OFFSET, 235 NGX_HTTP_LOC_CONF_OFFSET,
236 offsetof(ngx_http_proxy_loc_conf_t, upstream.local), 236 offsetof(ngx_http_proxy_loc_conf_t, upstream.local),
237 NULL }, 237 NULL },
238 238
239 { ngx_string("proxy_connect_timeout"), 239 { ngx_string("proxy_connect_timeout"),
535 { ngx_string("Connection"), ngx_string("close") }, 535 { ngx_string("Connection"), ngx_string("close") },
536 { ngx_string("Keep-Alive"), ngx_string("") }, 536 { ngx_string("Keep-Alive"), ngx_string("") },
537 { ngx_string("Expect"), ngx_string("") }, 537 { ngx_string("Expect"), ngx_string("") },
538 { ngx_string("If-Modified-Since"), ngx_string("") }, 538 { ngx_string("If-Modified-Since"), ngx_string("") },
539 { ngx_string("If-Unmodified-Since"), ngx_string("") }, 539 { ngx_string("If-Unmodified-Since"), ngx_string("") },
540 { ngx_string("If-Match-None"), ngx_string("") }, 540 { ngx_string("If-None-Match"), ngx_string("") },
541 { ngx_string("If-Match"), ngx_string("") }, 541 { ngx_string("If-Match"), ngx_string("") },
542 { ngx_string("Range"), ngx_string("") }, 542 { ngx_string("Range"), ngx_string("") },
543 { ngx_string("If-Range"), ngx_string("") }, 543 { ngx_string("If-Range"), ngx_string("") },
544 { ngx_null_string, ngx_null_string } 544 { ngx_null_string, ngx_null_string }
545 }; 545 };