aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2012-12-11 22:30:50 +0100
committerKim Alvefur <zash@zash.se>2012-12-11 22:30:50 +0100
commitbcfa20dc80d5b3197ac5d3d3e0fa066e9368603c (patch)
tree3e7b37f096ebc738f361d82f43182b37122979cb /plugins
parent84dcecb046e820e0cd9541d6caa5e111c1ad4c8c (diff)
downloadprosody-bcfa20dc80d5b3197ac5d3d3e0fa066e9368603c.tar.gz
prosody-bcfa20dc80d5b3197ac5d3d3e0fa066e9368603c.zip
mod_http_files: Add Last-Modified header
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_http_files.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_http_files.lua b/plugins/mod_http_files.lua
index 0add5c86..7e181ed4 100644
--- a/plugins/mod_http_files.lua
+++ b/plugins/mod_http_files.lua
@@ -9,6 +9,7 @@
module:depends("http");
local lfs = require "lfs";
+local os_date = os.date;
local open = io.open;
local stat = lfs.attributes;
@@ -35,6 +36,7 @@ function serve_file(event, path)
return 404;
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);
response.headers.etag = tag;