diff --git a/packages/cli/src/Server.ts b/packages/cli/src/Server.ts index 504d8d9da..5c0bed010 100644 --- a/packages/cli/src/Server.ts +++ b/packages/cli/src/Server.ts @@ -129,7 +129,7 @@ class App { async config(): Promise { this.versions = await GenericHelpers.getVersions(); - const authIgnoreRegex = new RegExp(`^\/(rest|healthz|${this.endpointWebhook}|${this.endpointWebhookTest})\/?.*$`); + const authIgnoreRegex = new RegExp(`^\/(healthz|${this.endpointWebhook}|${this.endpointWebhookTest})\/?.*$`); // Check for basic auth credentials if activated const basicAuthActive = config.get('security.basicAuth.active') as boolean;