core.certmanager: Allow all non-whitespace in service name (fixes #1019)

This commit is contained in:
Kim Alvefur 2018-05-25 03:30:16 +02:00
parent 0f78fff909
commit 400d3337aa

View file

@ -157,7 +157,7 @@ end
local function create_context(host, mode, ...)
local cfg = new_config();
cfg:apply(core_defaults);
local service_name, port = host:match("^(%w+) port (%d+)$");
local service_name, port = host:match("^(%S+) port (%d+)$");
if service_name then
cfg:apply(find_service_cert(service_name, tonumber(port)));
else