diff --git a/services/mana-sync/internal/config/config.go b/services/mana-sync/internal/config/config.go index 398ea7836..fd283a1ab 100644 --- a/services/mana-sync/internal/config/config.go +++ b/services/mana-sync/internal/config/config.go @@ -20,7 +20,7 @@ func Load() *Config { return &Config{ Port: port, DatabaseURL: getEnv("DATABASE_URL", "postgresql://manacore:devpassword@localhost:5432/mana_sync"), - JWKSUrl: getEnv("JWKS_URL", "http://localhost:3001/.well-known/jwks.json"), + JWKSUrl: getEnv("JWKS_URL", "http://localhost:3001/api/auth/jwks"), CORSOrigins: getEnv("CORS_ORIGINS", "http://localhost:5173,http://localhost:5188"), } }