diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2011-11-01 14:18:10 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2011-11-01 14:18:10 +0000 |
| commit | 9b3014e024182da03b88bc77b1c17031e27d429e (patch) | |
| tree | 951dd0bc1238e72a7002562a46b5c873fde7a87e /src/http/ngx_http_upstream.h | |
| parent | d66f8ae6346fded952cb4f441232212d1eeac880 (diff) | |
| download | nginx-9b3014e024182da03b88bc77b1c17031e27d429e.tar.gz nginx-9b3014e024182da03b88bc77b1c17031e27d429e.tar.bz2 | |
Merging r4198:
Additional headers for proxy/fastcgi/uwsgi/scgi_ignore_headers.
Now the following headers may be ignored as well: X-Accel-Limit-Rate,
X-Accel-Buffering, X-Accel-Charset.
Diffstat (limited to '')
| -rw-r--r-- | src/http/ngx_http_upstream.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http/ngx_http_upstream.h b/src/http/ngx_http_upstream.h index fa848c0d3..74f213565 100644 --- a/src/http/ngx_http_upstream.h +++ b/src/http/ngx_http_upstream.h @@ -44,6 +44,9 @@ #define NGX_HTTP_UPSTREAM_IGN_EXPIRES 0x00000008 #define NGX_HTTP_UPSTREAM_IGN_CACHE_CONTROL 0x00000010 #define NGX_HTTP_UPSTREAM_IGN_SET_COOKIE 0x00000020 +#define NGX_HTTP_UPSTREAM_IGN_XA_LIMIT_RATE 0x00000040 +#define NGX_HTTP_UPSTREAM_IGN_XA_BUFFERING 0x00000080 +#define NGX_HTTP_UPSTREAM_IGN_XA_CHARSET 0x00000100 typedef struct { |
