mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: Log something if unable to load MIME database
Not that much to worry about, the most common file types are included in the code above.
This commit is contained in:
parent
61273591cd
commit
dd7a972108
1 changed files with 3 additions and 1 deletions
|
@ -33,7 +33,9 @@ if not mime_map then
|
|||
module:shared("/*/http_files/mime").types = mime_map;
|
||||
|
||||
local mime_types, err = open(module:get_option_path("mime_types_file", "/etc/mime.types", "config"), "r");
|
||||
if mime_types then
|
||||
if not mime_types then
|
||||
module:log("debug", "Could not open MIME database: %s", err);
|
||||
else
|
||||
local mime_data = mime_types:read("*a");
|
||||
mime_types:close();
|
||||
setmetatable(mime_map, {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue