mod_httpserver: Skip returning a Content-Type when not known (application/octet-stream is not a correct default).

This commit is contained in:
Waqas Hussain 2009-12-10 16:25:50 +05:00
parent 0103431013
commit eeee71ebc1

View file

@ -52,11 +52,8 @@ function serve_file(path)
local data = f:read("*a"); local data = f:read("*a");
f:close(); f:close();
local ext = path:match("%.([^.]*)$"); local ext = path:match("%.([^.]*)$");
local mime = mime_map[ext]; local mime = mime_map[ext]; -- Content-Type should be nil when not known
if not mime then module:log("warn", "ext: %s, mime: %s", ext or "(nil)", mime or "(nil)");
mime = ext and "application/octet-stream" or "text/html";
end
module:log("warn", "ext: %s, mime: %s", ext, mime);
return { return {
headers = { ["Content-Type"] = mime; }; headers = { ["Content-Type"] = mime; };
body = data; body = data;