From 1ffa20a829a5c19be3c89dafa8f074c0d9ac4703 Mon Sep 17 00:00:00 2001 From: Jesse Zong Date: Fri, 21 Mar 2025 17:50:08 -0400 Subject: [PATCH] Update jwk verification pipeline. If this fixes backend-to-backend, we need to rework to double-auth for both potential users and other backends. --- src/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.py b/src/config.py index 1bc92a7..f20c759 100644 --- a/src/config.py +++ b/src/config.py @@ -12,7 +12,7 @@ class Config(BaseSettings): REDIS_URL: RedisDsn JWKS_CACHE: JWKSet | None = None - JWKS_URL: str = "https://platform.pennlabs.org/accounts/.well-known/jwks.json" + JWKS_URL: str = "https://platform.pennlabs.org/identity/jwks/" SITE_DOMAIN: str = "analytics.pennlabs.org"