diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-02-11 14:02:28 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-02-11 14:02:28 +0000 |
commit | c2e854e1988c20bbcdae928765035264c74c2ad9 (patch) | |
tree | f045ed6a9685213dba30cce9d66ab04736a1e53e /src/http/modules/ngx_http_proxy_module.c | |
parent | be0a61e618fc21cd9d5a39d8562aa0c2b449fd59 (diff) | |
download | nginx-c2e854e1988c20bbcdae928765035264c74c2ad9.tar.gz nginx-c2e854e1988c20bbcdae928765035264c74c2ad9.zip |
add X-Accel-Charset to ingored header, fix X-Accel-Buffering
Diffstat (limited to 'src/http/modules/ngx_http_proxy_module.c')
-rw-r--r-- | src/http/modules/ngx_http_proxy_module.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_proxy_module.c b/src/http/modules/ngx_http_proxy_module.c index 0849668ee..d3f4c60ea 100644 --- a/src/http/modules/ngx_http_proxy_module.c +++ b/src/http/modules/ngx_http_proxy_module.c @@ -435,7 +435,8 @@ static ngx_str_t ngx_http_proxy_hide_headers[] = { ngx_string("X-Accel-Expires"), ngx_string("X-Accel-Redirect"), ngx_string("X-Accel-Limit-Rate"), - ngx_string("X-Accel-Buffer"), + ngx_string("X-Accel-Buffering"), + ngx_string("X-Accel-Charset"), ngx_null_string }; |