diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-09-28 09:48:25 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-09-28 09:48:25 +0000 |
commit | 07ee0039b26fc62814ec865b3ff1f165d5ac87c6 (patch) | |
tree | 6a171bc5df4c21bb37a4759452de7c92346f3d1d /src | |
parent | 9d2811b28bee4b7a7cd9eecf654c7766eab9dd3d (diff) | |
download | nginx-07ee0039b26fc62814ec865b3ff1f165d5ac87c6.tar.gz nginx-07ee0039b26fc62814ec865b3ff1f165d5ac87c6.zip |
add time and length to a HEAD request
Diffstat (limited to 'src')
-rw-r--r-- | src/http/modules/ngx_http_empty_gif_module.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/modules/ngx_http_empty_gif_module.c b/src/http/modules/ngx_http_empty_gif_module.c index dbfe710aa..8450cae71 100644 --- a/src/http/modules/ngx_http_empty_gif_module.c +++ b/src/http/modules/ngx_http_empty_gif_module.c @@ -127,6 +127,8 @@ ngx_http_empty_gif_handler(ngx_http_request_t *r) if (r->method == NGX_HTTP_HEAD) { r->headers_out.status = NGX_HTTP_OK; + r->headers_out.content_length_n = sizeof(ngx_empty_gif); + r->headers_out.last_modified_time = 23349600; return ngx_http_send_header(r); } |