From bcfa20dc80d5b3197ac5d3d3e0fa066e9368603c Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Tue, 11 Dec 2012 22:30:50 +0100 Subject: mod_http_files: Add Last-Modified header --- plugins/mod_http_files.lua | 2 ++ 1 file changed, 2 insertions(+) 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; -- cgit v1.2.3