summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-10-29 15:08:43 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-10-29 15:08:43 +0000
commit66a780f443d9889bfcf64c2b99ae5d0ce3cf95b3 (patch)
treeae98af570298228c1d08ad22314ecd6fbd457344
parent3e43c7880c266b62f379d46a24b16e23d1ab7960 (diff)
downloadnginx-66a780f443d9889bfcf64c2b99ae5d0ce3cf95b3.tar.gz
nginx-66a780f443d9889bfcf64c2b99ae5d0ce3cf95b3.tar.bz2
r1548 merge:
add time and length to a HEAD request
-rw-r--r--src/http/modules/ngx_http_empty_gif_module.c2
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 03ca8021b..5bd23c43c 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);
}