This commit is contained in:
Chris Wanstrath 2025-09-16 22:35:23 -07:00
parent 2d7aa75a49
commit 7c4b667996

View File

@ -105,5 +105,9 @@ function publishAppDNS(app: string) {
} }
const appWatcher = watch(NOSE_WWW, (event, filename) => { const appWatcher = watch(NOSE_WWW, (event, filename) => {
apps().forEach(publishAppDNS) const www = apps()
www.forEach(publishAppDNS)
for (const name in dnsEntries)
if (!www.includes(name))
dnsEntries[name].kill("SIGTERM")
}) })