Software /
code /
prosody
Changeset
1812:e32593074602
mod_httpserver: Configurable filesystem path to serve from
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 21 Sep 2009 17:57:28 +0100 |
parents | 1811:4aa5e80d8ce3 |
children | 1813:2683cdaf6dc8 |
files | plugins/mod_httpserver.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_httpserver.lua Mon Sep 21 15:10:36 2009 +0100 +++ b/plugins/mod_httpserver.lua Mon Sep 21 17:57:28 2009 +0100 @@ -13,7 +13,7 @@ local t_concat = table.concat; local check_http_path; -local http_base = "www_files"; +local http_base = config.get("*", "core", "http_path") or "www_files"; local response_403 = { status = "403 Forbidden", body = "<h1>Invalid URL</h1>Sorry, we couldn't find what you were looking for :(" }; local response_404 = { status = "404 Not Found", body = "<h1>Page Not Found</h1>Sorry, we couldn't find what you were looking for :(" };