Skip to content

Instantly share code, notes, and snippets.

@GoldenChrysus
Created November 12, 2024 03:33
Show Gist options
  • Save GoldenChrysus/d184e123880dd8113311fe4e48ac161c to your computer and use it in GitHub Desktop.
Save GoldenChrysus/d184e123880dd8113311fe4e48ac161c to your computer and use it in GitHub Desktop.
Auth.js Multi-Tenant
AUTH_TRUST_HOST=true
// 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',
}),
],
};
{
"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