-
-
Save GoldenChrysus/d184e123880dd8113311fe4e48ac161c to your computer and use it in GitHub Desktop.
Auth.js Multi-Tenant
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AUTH_TRUST_HOST=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://domain.com = our own, non-multi-tenant domain | |
const getSiteUrl = (req?: NextRequest) => { | |
if (!req) { | |
return undefined; | |
} | |
const { headers } = req; | |
const host = headers.get('X-Forwarded-Host'); // a tenant subdomain or tenant's own domain | |
const proto = headers.get('X-Forwarded-Proto'); | |
return (host && proto) ? `https://${host}` : 'https://domain.com'; | |
}; | |
export const { | |
auth, handlers, signIn, signOut, unstable_update: update, | |
} = { | |
basePath: '/api/auth', | |
baseUrl: (r) => getSiteUrl(r) ?? 'https://domain.com', | |
trustHost: true, | |
providers: [ | |
GitHub({ | |
clientId: process.env.GITHUB_CLIENT_ID ?? '', | |
clientSecret: process.env.GITHUB_CLIENT_SECRET ?? '', | |
authorization: { | |
params: { scope: 'user:email' }, | |
}, | |
redirectProxyUrl: 'https://domain.com/api/auth', | |
}), | |
], | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"next-auth": "npm:next-auth-chrysus@^5.0.0-beta.23" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment