mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: Add Last-Modified header
This commit is contained in:
parent
84dcecb046
commit
bcfa20dc80
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue