aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_headers.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/http/ngx_http_headers.c')
-rw-r--r--src/http/ngx_http_headers.c4
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 }
};