X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=net%2Fhttpserver.lua;h=fefd289bc322daaa25f6d5bd94a1925753ac8b47;hb=68aa12bf2c6ed9f24e90e918bff5e43ac5e3007f;hp=77cc5b981ad5a5016767401f3013fa3b6ba5c0f6;hpb=e403a4a72d42850b0bb1de63dd2fc89c5f311f11;p=prosody.git 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