# HG changeset patch # User Kim Alvefur # Date 1489788155 -3600 # Node ID 6521a51bb7182778ed5722ee75fa69c3fd99dfa5 # Parent 879be73c0a58dc817a9e6eb13c271377521f2e01 mod_http_files: Pass only the name of the path, get_option_path knows how to deal with it diff -r 879be73c0a58 -r 6521a51bb718 plugins/mod_http_files.lua --- a/plugins/mod_http_files.lua Fri Mar 17 13:04:18 2017 +0000 +++ b/plugins/mod_http_files.lua Fri Mar 17 23:02:35 2017 +0100 @@ -37,7 +37,7 @@ }; 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();