aboutsummaryrefslogtreecommitdiffstats
path: root/net/httpserver.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-07-14 21:03:30 +0100
committerMatthew Wild <mwild1@gmail.com>2009-07-14 21:03:30 +0100
commitcef5dd4ef619ead81d1a13574d0502d0c92259b1 (patch)
tree87f702562a94d28ee68ea71ec459c7206e12db65 /net/httpserver.lua
parent03b271483880edddaa4df17f60ac261dc9c14a5f (diff)
downloadprosody-cef5dd4ef619ead81d1a13574d0502d0c92259b1.tar.gz
prosody-cef5dd4ef619ead81d1a13574d0502d0c92259b1.zip
net.httpserver: Allow specification of the default base URL when using new_from_config()
Diffstat (limited to 'net/httpserver.lua')
-rw-r--r--net/httpserver.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/httpserver.lua b/net/httpserver.lua
index 77cc5b98..fefd289b 100644
--- a/net/httpserver.lua
+++ b/net/httpserver.lua
@@ -250,13 +250,13 @@ function new(params)
end
end
-function new_from_config(ports, handle_request)
+function new_from_config(ports, default_base, handle_request)
for _, options in ipairs(ports) do
- local port, base, ssl, interface = 5280, "http-bind", false, nil;
+ local port, base, ssl, interface = 5280, default_base, false, nil;
if type(options) == "number" then
port = options;
elseif type(options) == "table" then
- port, base, ssl, interface = options.port or 5280, options.path or "http-bind", options.ssl or false, options.interface;
+ port, base, ssl, interface = options.port or 5280, options.path or default_base, options.ssl or false, options.interface;
elseif type(options) == "string" then
base = options;
end