# HG changeset patch # User Igor Sysoev # Date 1193670523 0 # Node ID a0ec4734d2e980014766975e36d9125ab86dbd4a # Parent fd1fca184e679ebae77fd1fea0b3255646dd3582 r1548 merge: 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 --- 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_requ 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); }