mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_http_files: Fix sending Content-Type for index files
This commit is contained in:
parent
59db48f8cb
commit
360e2a5884
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ function serve(opts)
|
|||
module:log("debug", "Could not open or read %s. Error was %s", full_path, err);
|
||||
return 403;
|
||||
end
|
||||
local ext = orig_path:match("%.([^./]+)$");
|
||||
local ext = full_path:match("%.([^./]+)$");
|
||||
local content_type = ext and mime_map[ext];
|
||||
cache[orig_path] = { data = data; content_type = content_type; etag = etag };
|
||||
response_headers.content_type = content_type;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue