fix: Domain check

This commit is contained in:
Andras Bacsai
2022-07-06 19:04:54 +02:00
committed by GitHub
parent d7fa80703d
commit 62bfb5dacc
2 changed files with 7 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ const customConfig: Config = {
length: 3 length: 3
}; };
export const isDev = process.env.NODE_ENV === 'development'; export const isDev = process.env.NODE_ENV === 'development';
export const version = '3.0.2'; export const version = '3.0.3';
export const defaultProxyImage = `coolify-haproxy-alpine:latest`; export const defaultProxyImage = `coolify-haproxy-alpine:latest`;
export const defaultProxyImageTcp = `coolify-haproxy-tcp-alpine:latest`; export const defaultProxyImageTcp = `coolify-haproxy-tcp-alpine:latest`;
@@ -209,7 +209,7 @@ export async function checkDomainsIsValidInDNS({ hostname, fqdn, dualCerts }): P
resolves = await dns.resolve4(hostname); resolves = await dns.resolve4(hostname);
} }
} catch (error) { } catch (error) {
throw `DNS not set correctly or propogated.<br>Please check your DNS settings.` throw { status: 500, message: `DNS not set correctly or propogated.<br>Please check your DNS settings.` }
} }
if (dualCerts) { if (dualCerts) {
@@ -231,9 +231,9 @@ export async function checkDomainsIsValidInDNS({ hostname, fqdn, dualCerts }): P
} }
} }
if (ipDomainFound && ipDomainDualCertFound) return { status: 200 }; if (ipDomainFound && ipDomainDualCertFound) return { status: 200 };
throw false; throw { status: 500, message: `DNS not set correctly or propogated.<br>Please check your DNS settings.` }
} catch (error) { } catch (error) {
throw `DNS not set correctly or propogated.<br>Please check your DNS settings.` throw { status: 500, message: `DNS not set correctly or propogated.<br>Please check your DNS settings.` }
} }
} else { } else {
try { try {
@@ -245,9 +245,9 @@ export async function checkDomainsIsValidInDNS({ hostname, fqdn, dualCerts }): P
} }
} }
if (ipDomainFound) return { status: 200 }; if (ipDomainFound) return { status: 200 };
throw false; throw { status: 500, message: `DNS not set correctly or propogated.<br>Please check your DNS settings.` }
} catch (error) { } catch (error) {
throw `DNS not set correctly or propogated.<br>Please check your DNS settings.` throw { status: 500, message: `DNS not set correctly or propogated.<br>Please check your DNS settings.` }
} }
} }
} }

View File

@@ -18,7 +18,7 @@ interface AppSession {
} }
export const loginEmail: Writable<string | undefined> = writable() export const loginEmail: Writable<string | undefined> = writable()
export const appSession: Writable<AppSession> = writable({ export const appSession: Writable<AppSession> = writable({
version: '3.0.2', version: '3.0.3',
userId: null, userId: null,
teamId: null, teamId: null,
permission: 'read', permission: 'read',