From 5d78ce3ec9588cc6ab6002dbfa8f51189ea3582d Mon Sep 17 00:00:00 2001 From: niten Date: Wed, 14 Feb 2024 23:02:25 -0800 Subject: [PATCH] Audience has to match The audience is the client-id --- matrix-module.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/matrix-module.nix b/matrix-module.nix index 7480d5c..304d97a 100644 --- a/matrix-module.nix +++ b/matrix-module.nix @@ -130,6 +130,7 @@ in { enabled = true; algorithm = "RS256"; secret = cfg.openid.jwt-secret; + audiences = [ cfg.openid.client-id ]; }; listeners = [{ port = cfg.port;