mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_httpserver: Skip returning a Content-Type when not known (application/octet-stream is not a correct default).
This commit is contained in:
parent
0103431013
commit
eeee71ebc1
1 changed files with 2 additions and 5 deletions
|
@ -52,11 +52,8 @@ function serve_file(path)
|
|||
local data = f:read("*a");
|
||||
f:close();
|
||||
local ext = path:match("%.([^.]*)$");
|
||||
local mime = mime_map[ext];
|
||||
if not mime then
|
||||
mime = ext and "application/octet-stream" or "text/html";
|
||||
end
|
||||
module:log("warn", "ext: %s, mime: %s", ext, mime);
|
||||
local mime = mime_map[ext]; -- Content-Type should be nil when not known
|
||||
module:log("warn", "ext: %s, mime: %s", ext or "(nil)", mime or "(nil)");
|
||||
return {
|
||||
headers = { ["Content-Type"] = mime; };
|
||||
body = data;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue