diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2009-04-30 16:15:07 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2009-04-30 16:15:07 +0000 |
| commit | b01c9cc10ee7c39fb0cd175871adbb00be8f6706 (patch) | |
| tree | e8a01ad632621c5efff4ce3c77204df053a65ba0 /src/http/ngx_http_upstream.h | |
| parent | 0cd76ea2902588a7f3baea47407c48956aaa19e6 (diff) | |
| download | nginx-b01c9cc10ee7c39fb0cd175871adbb00be8f6706.tar.gz nginx-b01c9cc10ee7c39fb0cd175871adbb00be8f6706.tar.bz2 | |
proxy_ignore_headers and fastcgi_ignore_headers
Diffstat (limited to 'src/http/ngx_http_upstream.h')
| -rw-r--r-- | src/http/ngx_http_upstream.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/http/ngx_http_upstream.h b/src/http/ngx_http_upstream.h index 748e06444..95b396ee6 100644 --- a/src/http/ngx_http_upstream.h +++ b/src/http/ngx_http_upstream.h @@ -38,6 +38,12 @@ #define NGX_HTTP_UPSTREAM_INVALID_HEADER 40 +#define NGX_HTTP_UPSTREAM_IGN_XA_REDIRECT 0x00000002 +#define NGX_HTTP_UPSTREAM_IGN_XA_EXPIRES 0x00000004 +#define NGX_HTTP_UPSTREAM_IGN_EXPIRES 0x00000008 +#define NGX_HTTP_UPSTREAM_IGN_CACHE_CONTROL 0x00000010 + + typedef struct { ngx_msec_t bl_time; ngx_uint_t bl_state; @@ -128,6 +134,7 @@ typedef struct { ngx_bufs_t bufs; + ngx_uint_t ignore_headers; ngx_uint_t next_upstream; ngx_uint_t store_access; ngx_flag_t buffering; |
