mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_http_files: Configurable number of index files to check for
This commit is contained in:
parent
329ee389c5
commit
9a459d35a4
1 changed files with 5 additions and 2 deletions
|
@ -13,6 +13,7 @@ local open = io.open;
|
||||||
local stat = lfs.attributes;
|
local stat = lfs.attributes;
|
||||||
|
|
||||||
local http_base = module:get_option_string("http_files_dir", module:get_option_string("http_path", "www_files"));
|
local http_base = module:get_option_string("http_files_dir", module:get_option_string("http_path", "www_files"));
|
||||||
|
local dir_indices = module:get_option("http_files_index", { "index.html", "index.htm" });
|
||||||
|
|
||||||
-- TODO: Should we read this from /etc/mime.types if it exists? (startup time...?)
|
-- TODO: Should we read this from /etc/mime.types if it exists? (startup time...?)
|
||||||
local mime_map = {
|
local mime_map = {
|
||||||
|
@ -34,8 +35,10 @@ function serve_file(event, path)
|
||||||
response.headers.location = orig_path.."/";
|
response.headers.location = orig_path.."/";
|
||||||
return 301;
|
return 301;
|
||||||
end
|
end
|
||||||
if stat(full_path.."index.html", "mode") == "file" then
|
for i=1,#dir_indices do
|
||||||
return serve_file(event, path.."index.html");
|
if stat(full_path..dir_indices[i], "mode") == "file" then
|
||||||
|
return serve_file(event, path..dir_indices[i]);
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- TODO File listing
|
-- TODO File listing
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue