DEV Community

Abdelaziz Allem
Abdelaziz Allem

Posted on

Middleware for Dynamic Database URL Based on Subdomain in NestJS with Prisma

I’m working on a multi-tenant application using NestJS and Prisma. I want to dynamically set the databaseUrl based on the subdomain from my Next.js frontend. For example, if the subdomain is tenant1, I want to connect to tenant1_db, and if it’s tenant2, I want to connect to tenant2_db.

I’ve created…

Top comments (0)