mod_http_files: Add Last-Modified header

This commit is contained in:
Kim Alvefur 2012-12-11 22:30:50 +01:00
parent 84dcecb046
commit bcfa20dc80

View file

@ -9,6 +9,7 @@
module:depends("http"); module:depends("http");
local lfs = require "lfs"; local lfs = require "lfs";
local os_date = os.date;
local open = io.open; local open = io.open;
local stat = lfs.attributes; local stat = lfs.attributes;
@ -35,6 +36,7 @@ function serve_file(event, path)
return 404; return 404;
end end
response.headers.last_modified = os_date('!%a, %d %b %Y %H:%M:%S GMT', attr.modification);
local tag = ("%02x-%x-%x-%x"):format(attr.dev or 0, attr.ino or 0, attr.size or 0, attr.modification or 0); local tag = ("%02x-%x-%x-%x"):format(attr.dev or 0, attr.ino or 0, attr.size or 0, attr.modification or 0);
response.headers.etag = tag; response.headers.etag = tag;