fix: missing fqdn for services
This commit is contained in:
parent
b56e28d27a
commit
5ff4197572
1 changed files with 3 additions and 0 deletions
|
|
@ -620,6 +620,9 @@ export async function configureSimpleServiceProxyOn({ id, domain, port }) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function configureSimpleServiceProxyOff(fqdn) {
|
export async function configureSimpleServiceProxyOff(fqdn) {
|
||||||
|
if (!fqdn) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
const domain = getDomain(fqdn);
|
const domain = getDomain(fqdn);
|
||||||
const haproxy = await haproxyInstance();
|
const haproxy = await haproxyInstance();
|
||||||
await checkHAProxy(haproxy);
|
await checkHAProxy(haproxy);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue