diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-04-14 17:44:28 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-04-14 17:44:28 +0000 |
commit | b3968b314f063c42f983ba70becfb9fae97651f0 (patch) | |
tree | 49334a35d59b4491c62facced5f0bdef1e434343 /src/http/ngx_http_headers.c | |
parent | a3677248993cddbf6f406dccd313eda8759724fb (diff) | |
download | nginx-b3968b314f063c42f983ba70becfb9fae97651f0.tar.gz nginx-b3968b314f063c42f983ba70becfb9fae97651f0.zip |
nginx-0.0.3-2004-04-14-21:44:28 import
Diffstat (limited to 'src/http/ngx_http_headers.c')
-rw-r--r-- | src/http/ngx_http_headers.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/http/ngx_http_headers.c b/src/http/ngx_http_headers.c index 8c925be21..fd617b161 100644 --- a/src/http/ngx_http_headers.c +++ b/src/http/ngx_http_headers.c @@ -53,6 +53,10 @@ ngx_http_header_t ngx_http_headers_out[] = { offsetof(ngx_http_headers_out_t, last_modified) }, { ngx_string("Accept-Ranges"), offsetof(ngx_http_headers_out_t, accept_ranges) }, + { ngx_string("Expires"), offsetof(ngx_http_headers_out_t, expires) }, + { ngx_string("Cache-Control"), + offsetof(ngx_http_headers_out_t, cache_control) }, + { ngx_string("ETag"), offsetof(ngx_http_headers_out_t, etag) }, { ngx_null_string, 0 } }; |