mod_http_files: Pass only the name of the path, get_option_path knows how to deal with it

This commit is contained in:
Kim Alvefur 2017-03-17 23:02:35 +01:00
parent b9135dfdd2
commit 0f64dd00ff

View file

@ -37,7 +37,7 @@ 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", prosody.paths.config), "r");
local mime_types, err = open(module:get_option_path("mime_types_file", "/etc/mime.types", "config"), "r");
if mime_types then
local mime_data = mime_types:read("*a");
mime_types:close();