feat(authelia): configure CORS

This commit is contained in:
Felix Schröter 2025-09-19 23:48:02 +02:00
parent 6780000825
commit 27b12ddb5b
Signed by: felschr
GPG key ID: 671E39E6744C807D

View file

@ -162,6 +162,16 @@ in
username = smtpAccount.user; username = smtpAccount.user;
sender = smtpAccount.from; sender = smtpAccount.from;
}; };
identity_providers.oidc.cors = {
endpoints = [
"authorization"
"token"
"revocation"
"introspection"
"userinfo"
];
allowed_origins_from_client_redirect_uris = true;
};
identity_providers.oidc.clients = [ identity_providers.oidc.clients = [
{ {
id = "miniflux"; id = "miniflux";