From: Igor Sysoev Date: Fri, 28 Sep 2007 09:48:25 +0000 (+0000) Subject: add time and length to a HEAD request X-Git-Tag: release-0.6.14~22 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=07ee0039b26fc62814ec865b3ff1f165d5ac87c6;p=nginx.git add time and length to a HEAD request --- 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); }