fix: missing fqdn for services

This commit is contained in:
Andras Bacsai 2022-02-28 09:48:24 +01:00
parent b56e28d27a
commit 5ff4197572

View File

@ -620,6 +620,9 @@ export async function configureSimpleServiceProxyOn({ id, domain, port }) {
}
export async function configureSimpleServiceProxyOff(fqdn) {
if (!fqdn) {
return;
}
const domain = getDomain(fqdn);
const haproxy = await haproxyInstance();
await checkHAProxy(haproxy);