diff src/http/modules/ngx_http_mp4_module.c @ 4748:192f54280a7a

Entity tags: set for static respones.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 09 Jul 2012 00:13:06 +0000
parents 9a43b145a8ba
children 49d65c9364fc
line wrap: on
line diff
--- a/src/http/modules/ngx_http_mp4_module.c
+++ b/src/http/modules/ngx_http_mp4_module.c
@@ -586,6 +586,10 @@ ngx_http_mp4_handler(ngx_http_request_t 
     r->headers_out.status = NGX_HTTP_OK;
     r->headers_out.last_modified_time = of.mtime;
 
+    if (ngx_http_set_etag(r) != NGX_OK) {
+        return NGX_HTTP_INTERNAL_SERVER_ERROR;
+    }
+
     if (ngx_http_set_content_type(r) != NGX_OK) {
         return NGX_HTTP_INTERNAL_SERVER_ERROR;
     }