mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_http_files: Add ETag and check If-None-Match to allow client-side cache
This commit is contained in:
parent
ed92fd78b6
commit
84dcecb046
1 changed files with 7 additions and 0 deletions
|
@ -35,6 +35,13 @@ function serve_file(event, path)
|
|||
return 404;
|
||||
end
|
||||
|
||||
|
||||
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;
|
||||
if tag == request.headers.if_none_match then
|
||||
return 304;
|
||||
end
|
||||
|
||||
if attr.mode == "directory" then
|
||||
if full_path:sub(-1) ~= "/" then
|
||||
response.headers.location = orig_path.."/";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue