diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-06-26 13:00:39 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-06-26 13:00:39 +0000 |
commit | 1e1f4c8a04f32907c1b9e263ec45bf20bb6210bb (patch) | |
tree | d438f11f031241622edd79953dc4dcd91ff63187 /src/http/modules/ngx_http_proxy_module.c | |
parent | 24329bf299b2ce4f4d9b02306651e1d64a4c6216 (diff) | |
download | nginx-1e1f4c8a04f32907c1b9e263ec45bf20bb6210bb.tar.gz nginx-1e1f4c8a04f32907c1b9e263ec45bf20bb6210bb.zip |
the "Expect" header support
Diffstat (limited to 'src/http/modules/ngx_http_proxy_module.c')
-rw-r--r-- | src/http/modules/ngx_http_proxy_module.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/modules/ngx_http_proxy_module.c b/src/http/modules/ngx_http_proxy_module.c index 278edb69f..8a7f2ab9e 100644 --- a/src/http/modules/ngx_http_proxy_module.c +++ b/src/http/modules/ngx_http_proxy_module.c @@ -402,6 +402,7 @@ static ngx_keyval_t ngx_http_proxy_headers[] = { { ngx_string("Host"), ngx_string("$proxy_host") }, { ngx_string("Connection"), ngx_string("close") }, { ngx_string("Keep-Alive"), ngx_string("") }, + { ngx_string("Expect"), ngx_string("") }, { ngx_null_string, ngx_null_string } }; |