diff --git a/plugins/app-backend/src/service/router.ts b/plugins/app-backend/src/service/router.ts index dc51499d74..ce94720a9a 100644 --- a/plugins/app-backend/src/service/router.ts +++ b/plugins/app-backend/src/service/router.ts @@ -171,6 +171,10 @@ export async function createRouter( (await fs.pathExists(publicDistDir)) && auth && httpAuth; if (enablePublicEntryPoint && auth && httpAuth) { + logger.info( + `App is running in protected mode, serving public content from ${publicDistDir}`, + ); + const publicRouter = Router(); publicRouter.use(async (req, _res, next) => {