Diff

plugins/mod_http_files.lua @ 7985:6521a51bb718

mod_http_files: Pass only the name of the path, get_option_path knows how to deal with it
author Kim Alvefur <zash@zash.se>
date Fri, 17 Mar 2017 23:02:35 +0100
parent 7978:01aa6344a556
child 7991:35a02ba83af2
line wrap: on
line diff
--- 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();