Merge 0.11->trunk

This commit is contained in:
Kim Alvefur 2020-06-23 17:59:24 +02:00
commit f7614d491a

View file

@ -254,7 +254,8 @@ function handle_request(conn, request, finish_cb)
};
conn._http_open_response = response;
local host = (request.headers.host or ""):match("[^:]+");
local host = request.headers.host;
if host then host = host:gsub(":%d+$",""); end
-- Some sanity checking
local err_code, err;