fix: check compose domains in general

This commit is contained in:
Andras Bacsai
2022-10-12 11:17:02 +02:00
parent 7a053ce697
commit f734154da8
2 changed files with 18 additions and 5 deletions

View File

@@ -243,13 +243,24 @@
nonWWWDomain = application.fqdn && getDomain(application.fqdn).replace(/^www\./, '');
if (application.deploymentType)
application.deploymentType = application.deploymentType.toLowerCase();
!isBot &&
(await post(`/applications/${id}/check`, {
if (!isBot) {
await post(`/applications/${id}/check`, {
fqdn: application.fqdn,
forceSave,
dualCerts,
exposePort: application.exposePort
}));
});
for (const service of dockerComposeServices) {
if (dockerComposeConfiguration[service.name].fqdn) {
await post(`/applications/${id}/check`, {
fqdn: dockerComposeConfiguration[service.name].fqdn,
forceSave,
dualCerts,
exposePort: application.exposePort
});
}
}
}
await post(`/applications/${id}`, {
...application,
baseDatabaseBranch,