mirror of
https://github.com/gethomepage/homepage.git
synced 2026-09-25 13:31:20 -07:00
Security: enable PKCE for OIDC
This commit is contained in:
@@ -205,6 +205,7 @@ describe("pages/api/auth/[...nextauth]", () => {
|
||||
name: "My OIDC",
|
||||
type: "oauth",
|
||||
idToken: true,
|
||||
checks: ["pkce", "state"],
|
||||
issuer: "https://issuer.example",
|
||||
wellKnown: "https://issuer.example/.well-known/openid-configuration",
|
||||
clientId: "client-id",
|
||||
|
||||
@@ -73,6 +73,7 @@ if (authEnabled) {
|
||||
name: process.env.HOMEPAGE_OIDC_NAME || "Homepage OIDC",
|
||||
type: "oauth",
|
||||
idToken: true,
|
||||
checks: ["pkce", "state"],
|
||||
issuer: cleanedIssuer,
|
||||
wellKnown: `${cleanedIssuer}/.well-known/openid-configuration`,
|
||||
clientId,
|
||||
|
||||
Reference in New Issue
Block a user