From 27b12ddb5b30f5b3a8e8b67f622f082d7811a278 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Fri, 19 Sep 2025 23:48:02 +0200 Subject: [PATCH] feat(authelia): configure CORS --- services/authelia.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/services/authelia.nix b/services/authelia.nix index b707199..68d7c7e 100644 --- a/services/authelia.nix +++ b/services/authelia.nix @@ -162,6 +162,16 @@ in username = smtpAccount.user; sender = smtpAccount.from; }; + identity_providers.oidc.cors = { + endpoints = [ + "authorization" + "token" + "revocation" + "introspection" + "userinfo" + ]; + allowed_origins_from_client_redirect_uris = true; + }; identity_providers.oidc.clients = [ { id = "miniflux";