Merge 0.10->trunk

This commit is contained in:
Kim Alvefur 2018-03-10 20:52:14 +01:00
commit 14b65a9175

View file

@ -1151,7 +1151,7 @@ function def_env.http:list()
local http_host = module:context(host):get_option_string("http_host");
print("HTTP endpoints on "..host..(http_host and (" (using "..http_host.."):") or ":"));
for _, provider in ipairs(http_apps) do
local url = module:context(host):http_url(provider.name);
local url = module:context(host):http_url(provider.name, provider.default_path);
print("", url);
end
print("");