diff options
author | Kim Alvefur <zash@zash.se> | 2013-06-13 23:31:11 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-06-13 23:31:11 +0200 |
commit | 6436abbab7906566e9bfe95015aabfe21c3f97e5 (patch) | |
tree | e6ab2aeaba00906726196361d54a7db07c3bd83e /plugins/mod_http_files.lua | |
parent | e5a50872bb62aec41b74052c2f5b22fc777daca6 (diff) | |
download | prosody-6436abbab7906566e9bfe95015aabfe21c3f97e5.tar.gz prosody-6436abbab7906566e9bfe95015aabfe21c3f97e5.zip |
mod_http_files: Put the MIME type map in a global shared table
Diffstat (limited to 'plugins/mod_http_files.lua')
-rw-r--r-- | plugins/mod_http_files.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http_files.lua b/plugins/mod_http_files.lua index 915bec58..59fd50aa 100644 --- a/plugins/mod_http_files.lua +++ b/plugins/mod_http_files.lua @@ -19,7 +19,7 @@ local base_path = module:get_option_string("http_files_dir", module:get_option_s local dir_indices = module:get_option("http_index_files", { "index.html", "index.htm" }); local directory_index = module:get_option_boolean("http_dir_listing"); -local mime_map = module:shared("mime").types; +local mime_map = module:shared("/*/http_files/mime").types; if not mime_map then mime_map = { html = "text/html", htm = "text/html", |