comparison src/http/modules/ngx_http_proxy_module.c @ 384:12defd37f578 NGINX_0_7_4

nginx 0.7.4 *) Feature: variables support in the "access_log" directive. *) Feature: the "open_log_file_cache" directive. *) Feature: the -g switch. *) Feature: the "Expect" request header line support. *) Bugfix: large SSI inclusions might be truncated.
author Igor Sysoev <http://sysoev.ru>
date Mon, 30 Jun 2008 00:00:00 +0400
parents 984bb0b1399b
children 34fb3a573548
comparison
equal deleted inserted replaced
383:6ee3ada01457 384:12defd37f578
400 400
401 static ngx_keyval_t ngx_http_proxy_headers[] = { 401 static ngx_keyval_t ngx_http_proxy_headers[] = {
402 { ngx_string("Host"), ngx_string("$proxy_host") }, 402 { ngx_string("Host"), ngx_string("$proxy_host") },
403 { ngx_string("Connection"), ngx_string("close") }, 403 { ngx_string("Connection"), ngx_string("close") },
404 { ngx_string("Keep-Alive"), ngx_string("") }, 404 { ngx_string("Keep-Alive"), ngx_string("") },
405 { ngx_string("Expect"), ngx_string("") },
405 { ngx_null_string, ngx_null_string } 406 { ngx_null_string, ngx_null_string }
406 }; 407 };
407 408
408 409
409 static ngx_str_t ngx_http_proxy_hide_headers[] = { 410 static ngx_str_t ngx_http_proxy_hide_headers[] = {