mirror of
https://github.com/fosrl/pangolin.git
synced 2026-08-18 10:12:55 +02:00
Generate the cert properly
This commit is contained in:
@@ -632,9 +632,7 @@ async function createHttpResource(
|
||||
);
|
||||
}
|
||||
|
||||
if (build !== "oss") {
|
||||
await createCertificate(domainId, fullDomain, db);
|
||||
}
|
||||
await createCertificate(domainId, fullDomain, db);
|
||||
|
||||
return response<CreateResourceResponse>(res, {
|
||||
data: resource,
|
||||
|
||||
@@ -678,9 +678,7 @@ async function updateHttpResource(
|
||||
// Update the subdomain in the update data
|
||||
updateData.subdomain = finalSubdomain;
|
||||
|
||||
if (build != "oss") {
|
||||
await createCertificate(domainId, fullDomain, db);
|
||||
}
|
||||
await createCertificate(domainId, fullDomain, db);
|
||||
}
|
||||
|
||||
let headers = undefined;
|
||||
|
||||
@@ -739,8 +739,7 @@ export async function createSiteResource(
|
||||
ssl &&
|
||||
(mode === "http" || mode == "inference") &&
|
||||
domainId &&
|
||||
fullDomain &&
|
||||
build != "oss"
|
||||
fullDomain
|
||||
) {
|
||||
await createCertificate(domainId, fullDomain, db);
|
||||
}
|
||||
|
||||
@@ -718,8 +718,7 @@ export async function updateSiteResource(
|
||||
ssl &&
|
||||
(mode === "http" || mode == "inference") &&
|
||||
domainId &&
|
||||
fullDomain &&
|
||||
build != "oss"
|
||||
fullDomain
|
||||
) {
|
||||
await createCertificate(domainId, fullDomain, db);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user