remove console.logs
This commit is contained in:
@@ -325,8 +325,6 @@ export async function isDomainConfigured({
|
|||||||
checkOwn?: boolean;
|
checkOwn?: boolean;
|
||||||
dockerId?: string;
|
dockerId?: string;
|
||||||
}): Promise<boolean> {
|
}): Promise<boolean> {
|
||||||
|
|
||||||
console.log({ checkOwn, dockerId })
|
|
||||||
const domain = getDomain(fqdn);
|
const domain = getDomain(fqdn);
|
||||||
const nakedDomain = domain.replace('www.', '');
|
const nakedDomain = domain.replace('www.', '');
|
||||||
const foundApp = await prisma.application.findFirst({
|
const foundApp = await prisma.application.findFirst({
|
||||||
@@ -387,7 +385,6 @@ export async function getContainerUsage(dockerId: string, container: string): Pr
|
|||||||
export async function checkDomainsIsValidInDNS({ hostname, fqdn, dualCerts }): Promise<any> {
|
export async function checkDomainsIsValidInDNS({ hostname, fqdn, dualCerts }): Promise<any> {
|
||||||
const { isIP } = await import('is-ip');
|
const { isIP } = await import('is-ip');
|
||||||
const domain = getDomain(fqdn);
|
const domain = getDomain(fqdn);
|
||||||
console.log({ hostname, fqdn, dualCerts })
|
|
||||||
const domainDualCert = domain.includes('www.') ? domain.replace('www.', '') : `www.${domain}`;
|
const domainDualCert = domain.includes('www.') ? domain.replace('www.', '') : `www.${domain}`;
|
||||||
dns.setServers(['1.1.1.1', '8.8.8.8']);
|
dns.setServers(['1.1.1.1', '8.8.8.8']);
|
||||||
let resolves = [];
|
let resolves = [];
|
||||||
|
@@ -77,7 +77,6 @@ export async function newDestination(request: FastifyRequest<NewDestination>, re
|
|||||||
const { id } = request.params
|
const { id } = request.params
|
||||||
|
|
||||||
let { name, network, engine, isCoolifyProxyUsed, remoteIpAddress, remoteUser, remotePort } = request.body
|
let { name, network, engine, isCoolifyProxyUsed, remoteIpAddress, remoteUser, remotePort } = request.body
|
||||||
console.log({ name, network, engine, isCoolifyProxyUsed, remoteIpAddress, remoteUser, remotePort })
|
|
||||||
if (id === 'new') {
|
if (id === 'new') {
|
||||||
console.log(engine)
|
console.log(engine)
|
||||||
if (engine) {
|
if (engine) {
|
||||||
|
Reference in New Issue
Block a user