Reconfigure apps on dashboard domain change, if they use oidc addon

This commit is contained in:
Johannes Zellner
2023-07-21 17:10:25 +02:00
parent 00b5438ec5
commit 4c185fb3b4
3 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -149,7 +149,7 @@ async function markApps(existingInfra, options) {
} else if (existingInfra.version !== infra.version) {
debug('markApps: reconfiguring installed apps');
reverseProxy.removeAppConfigs(); // should we change the cert location, nginx will not start
await apps.configureInstalledApps(AuditSource.PLATFORM);
await apps.configureInstalledApps(await apps.list(), AuditSource.PLATFORM);
} else {
let changedAddons = [];
if (infra.images.mysql.tag !== existingInfra.images.mysql.tag) changedAddons.push('mysql');