Multi-Tenant Platform Architecture (Cloudflare or Vercel)
SkillCloud & infraDesigns multi-tenant SaaS architecture on Cloudflare (Workers for Platforms, Cloudflare for SaaS) or Vercel (Next.js proxy.ts, wildcard and custom domains). Covers platform choice, tenant domain strategy and Public Suffix List submission, tenant identification by subdomain, custom domain, or path, c
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Multi-Tenant Platform Architecture (Cloudflare or Vercel) skill
What this skill tells your AI
The instructions your AI receives, as published by mblode/agent-skills in skills/multi-tenant-architecture/SKILL.md and read by ahel’s review.
- IS: platform choice, domain strategy and PSL, tenant identification, compute and data isolation, hostname routing, tenant context propagation, custom domains and SSL, per-tenant static files, and mapping platform limits to plans.
- IS NOT: general folder structure or module contracts (use
codebase-architecture), scaffolding a new repo (usescaffold-nextjs), or the content of per-tenant SEO files once routing serves them dynamically: sitemap entries, canonical URLs, structured data, indexing policy (useseo).
Contents
- Platform dispatch (decide first)
- Reference files
- Workflow (order matters)
- Gotchas
- Output schema
- Pre-commit checklist
- Related skills
Platform dispatch (decide first)
| Signals | Platform | Model |
|---|---|---|
| Tenants upload or generate their own code; code-level isolation; edge compute on KV, D1, Durable Objects, R2 | Cloudflare | Dispatch Worker in front of a dispatch namespace of per-tenant Workers; Cloudflare for SaaS for custom hostnames |
| Every tenant runs the same Next.js codebase and differs by content, branding, and plan; ISR, Server Components, Vercel deploys | Vercel | One deployment; proxy.ts resolves the tenant from the hostname; wildcard plus custom domains on the project |
- Pick one platform per product. Fronting a Vercel app with a Cloudflare proxy doubles the TLS and redirect layers and is the usual cause of redirect loops and failed certificate issuance.
- Tenants shipping their own code on Vercel is the multi-project model (one Vercel project per tenant, created with the SDK). It follows the Cloudflare row's isolation reasoning; this skill's Vercel references cover the single-deployment model only.
Reference files
| File | Read when |
|---|---|
| cloudflare-platform.md | Cloudflare chosen: dispatch namespaces, routing, Cloudflare for SaaS custom hostnames, isolation modes, KV and D1 (steps 3 to 7) |
| vercel-platform.md | Vercel chosen: proxy.ts resolution, App Router layout, Global Config lookups, per-tenant static files, custom subpaths, local dev (steps 4 to 7) |
| vercel-domains.md | Vercel chosen: SDK domain lifecycle, DNS targets, verification, wildcard nameservers, SSL, troubleshooting (step 7) |
| data-isolation.md | Step 3 on either platform: shared schema with RLS, schema-per-tenant, database-per-tenant, and the Postgres/Supabase/Drizzle policy pattern |
| psl.md | Step 1 when tenants publish content or run code on sibling subdomains: eligibility, submission, interim cookie controls |
| limits-and-quotas.md | Step 8: dated snapshot of Cloudflare, Vercel, and Neon limits to map onto plans |
agents/openai.yaml | Never during a task: launcher metadata for external runners |
Workflow (order matters)
Copy this checklist to track progress:
Multi-tenant progress:
- [ ] Step 1: Domain strategy and PSL decision
- [ ] Step 2: Tenant identification strategy
- [ ] Step 3: Isolation model (compute and data)
- [ ] Step 4: Deterministic routing
- [ ] Step 5: Tenant context propagation
- [ ] Step 6: Tenant config and least-privilege bindings
- [ ] Step 7: Custom domains and per-tenant static files
- [ ] Step 8: Limits mapped to plans, evidence captured
- Choose the domain strategy
- Put tenant workloads on a dedicated registrable domain (
acme.appfor tenants,acme.comfor brand). One phishing tenant onx.acme.computs the whole domain on blocklists, and a tenant cookie withDomain=acme.comreaches your dashboard. - Keep the dashboard and auth on a different apex from tenant subdomains (
app.acme.comfor the console,*.acme.appfor tenants). - If tenants publish content or run code on sibling subdomains, submit the label directly above the tenant name (
acme.app, orsites.acme.appfor<tenant>.sites.acme.app) to the PSL and start now: there is no SLA. Tenant-owned custom domains need no PSL entry. Otherwise recordNo PSLwith the reason.
- Choose tenant identification (one primary; custom domain as the upgrade path)
- Subdomain
tenant.acme.app: wildcard DNS plus wildcard certificate. The default. - Custom domain
tenant.com: the tenant CNAMEs to you. Paying tenants; reputation shifts to them; needs the onboarding lifecycle in step 7. - Path
acme.app/tenant: no per-tenant DNS or certificates, but no cookie isolation and no branding. Choose it only when tenants will never get a hostname.
- Define the isolation model
- Compute, Cloudflare: one dispatch namespace in untrusted mode; per-invocation
cpuMsandsubRequestslimits per plan; an outbound Worker if tenant code may call the internet. - Compute, Vercel: one deployment, tenant code never executes. If tenants must ship code, move to Vercel multi-project or Cloudflare rather than sandboxing inside the app.
- Data: shared schema with
tenant_idon every tenant-aware table plus RLS is the default; database-per-tenant for regulated or noisy tenants, selectable per plan. See data-isolation.md.
- Route deterministically (tenants never influence routing or see each other)
- Cloudflare: a single
*/*route on the SaaS zone to the dispatch Worker; hostname -> tenant record (KV, D1 on miss) ->env.DISPATCHER.get(script);Worker not found-> 404. - Vercel:
proxy.ts(Next.js 16;middleware.tswithruntime: 'nodejs'on 15) readshost, looks the tenant up in Global Config or the database, rewrites into the tenant segment; unknown hostname -> 404, never the brand site. - Let
/.well-knownthrough before any tenant rewrite. Routerobots.txt,sitemap.xml, andllms.txtinto the tenant segment so they vary per tenant.
- Propagate tenant context from one authority
- Delete every inbound
x-tenant-*header, setx-tenant-id,x-tenant-slug,x-tenant-planfrom the resolved tenant, and forward them on the request (NextResponse.next({ request: { headers } })). Server Components readawait headers(); route handlers readrequest.headers. Cloudflare: the dispatch Worker sets headers or passes parameters beforefetch. - The proxy is routing, not authorization. Server Functions, route handlers, and jobs re-derive the tenant from the session and the data layer enforces it (RLS or
tenant_idpredicates).
- Bind only what the tenant needs
- Cloudflare: each user Worker gets its own bindings (KV namespace, D1 database, R2 prefix); adding a binding is an explicit redeploy. No shared globals.
- Vercel: Global Config holds only
hostname -> { id, slug, plan }; the database is the source of truth and write-through happens when a domain verifies. Feature flags and branding come from the database keyed by tenant id.
- Support custom domains and per-tenant static files
- Lifecycle to design and record: add domain -> show DNS target -> verify ownership -> certificate issued -> mapping activated -> removal or failure path.
- Cloudflare: Cloudflare for SaaS custom hostname on the SaaS zone, proxied fallback origin,
customers.<you>.comCNAME target,httportxtvalidation, pre-validate before DNS cutover. See cloudflare-platform.md. - Vercel:
projectsAddProjectDomain-> DNS values from the project's domain card ->_vercelTXT only if the domain is already on Vercel ->projectsVerifyProjectDomain-> Let's Encrypt HTTP-01. See vercel-domains.md. robots.txt,sitemap.xml,llms.txtare route handlers inside the tenant segment with explicitContent-Type; nothing tenant-specific lives in/public. Their content isseoterritory.
- Surface limits as plans and capture evidence
- Fill the limits-to-plan table from limits-and-quotas.md, re-checking each source URL and dating it; enforce at the routing layer (Cloudflare
limits, Vercel plan header plus server checks). - Nothing long-running in the request path: Cloudflare Queues or Workflows, Vercel background functions or cron.
- Every tenant operation (create tenant, add domain, verify, remove) works over HTTP with the same authority as the UI; if it only works in the dashboard, the platform leaks into the UI.
- Run the evidence commands in the pre-commit checklist and paste results into the output.
Gotchas
- Tenant headers set on the response instead of the request:
NextResponse.next({ headers })sendsx-tenant-idto the browser andheaders()in Server Components reads nothing. UseNextResponse.next({ request: { headers: requestHeaders } }). - Forwarding inbound tenant headers:
curl -H "x-tenant-id: <other>"then serves another tenant's data. Delete or overwritex-tenant-*on every path through the proxy, including paths that skip resolution. - The starter kit matcher
'/((?!api|_next|[\\w-]+\\.\\w+).*)'excludes every root file with an extension, sorobots.txtandsitemap.xmlskip the proxy and every tenant gets the platform's/publiccopy. Match them, and rewrite them into the tenant segment. - Next.js 16 renamed
middleware.tstoproxy.ts(exportproxy, Node.js runtime, aruntimeconfig option throws).npx @next/codemod@canary middleware-to-proxy .migrates. A matcher that excludes a path also skips Server Function POSTs on it, so tenant checks live in the data layer too. - Global Config (formerly Edge Config) key names must match
^[\w-]+$;tenant_acme.comis rejected. Use a collision-free encoding or hash; replacing dots with underscores can map different hostnames to the same key. Writes propagate in up to 10 s, so a "domain connected" screen that reads Global Config right after the write shows stale state; read the database there. The legacy@vercel/edge-configSDK cannot read stores connected after the rename (they createGLOBAL_CONFIG, notEDGE_CONFIG). - RLS is bypassed by superusers and
BYPASSRLSroles; table owners bypass it unlessFORCE ROW LEVEL SECURITYis enabled. An app connecting as the migration role sees every tenant with policies "on". Connect as a separate role, addALTER TABLE ... FORCE ROW LEVEL SECURITY, and test withSET ROLE app_user. SET app.tenant_id = ...outside a transaction on a pooled connection persists into the next request. Useset_config('app.tenant_id', $1, true)inside the transaction; with PgBouncer in transaction mode it is the only safe form.- Wildcard
*.acme.appon Vercel without Vercel nameservers never gets a certificate: DNS-01 needs Vercel to write_acme-challenge. Pointns1.vercel-dns.comandns2.vercel-dns.comfirst and re-add MX records. /.well-knownis reserved on Vercel and cannot be rewritten or redirected; a proxy that rewrites every path into/s/[slug]breaks HTTP-01 and custom-domain certificates never issue. Pass it through first.- Cloudflare for SaaS: the fallback origin must be a proxied record in the SaaS zone; a custom hostname equal to the zone name is unsupported;
_cf-custom-hostnamepre-validation does not work when the customer's zone is also on Cloudflare (O2O, marked bycf-connecting-o2o: 1). - Untrusted dispatch namespaces (default) have no
request.cfand nocaches.default, so tenant code readingrequest.cf.countrythrows. Trusted mode restores them but shares one cache across every tenant Worker in the namespace. - KV is eventually consistent (up to 60 s, negative lookups cached): a hostname added after the dispatch Worker's first lookup 404s for a minute. Fall back to D1 on miss during onboarding.
- PSL rejects domains with under two years of registration left; the
_psl.<suffix>TXT stays in place after merge; browsers ship the list on their own release cycles. Listing also killsDomain=acme.appcookies, including your own cross-subdomain SSO if it lives there. - Starting path-based with custom domains on the roadmap means URL rewrites, cookie changes, and DNS migration later.
- Domain quotas and charges vary by provider and plan. Put current official limits and their access dates in the plan table before setting pricing.
Output schema
Length follows the decisions: drop any section the project does not face rather than filling it.
# Multi-tenant architecture
## Platform decision
- Platform: Cloudflare | Vercel
- Why this platform:
- Rejected platform and reason:
## Domain map
- Brand domain:
- Tenant domain:
- Tenant subdomains:
- Custom domains:
- PSL decision: Submit (suffix, owner, PR link, _psl TXT date) | No PSL (reason)
## Routing matrix
| Host pattern | Resolver | Destination | Unknown tenant behavior |
|---|---|---|---|
## Tenant context flow
- Authority: proxy.ts | dispatch Worker
- Headers set and stripped:
- Server read path:
- Data-layer enforcement:
## Isolation model
- Compute isolation:
- Data isolation (and per-plan variant):
- Config/binding isolation:
## Custom-domain lifecycle
1. DNS target:
2. Ownership verification:
3. Certificate provisioning:
4. Routing activation:
5. Removal/failure path:
## Limits-to-plan table
| Limit | Source URL / access date | Free | Pro | Enterprise | Enforcement point |
|---|---|---:|---:|---:|---|
## Validation evidence
| Check | Command | Expected | Result |
|---|---|---|---|
Pre-commit checklist
- Platform chosen with rationale; multi-project or Cloudflare chosen if tenants ship code
- Tenant workloads off the brand domain; dashboard on a separate apex; PSL decision recorded
- Identification strategy chosen; custom-domain upgrade path defined
- Isolation model defined for compute and data, including the per-plan variant
- Routing tenant-blind: unknown host -> 404;
/.well-knownpasses through; static files vary per tenant - Inbound
x-tenant-*stripped; context set by the proxy or dispatch Worker only; data layer enforces tenant - Custom-domain lifecycle defined end to end, including removal
- Limits table dated from official URLs; enforcement points named; long work off the request path
Evidence commands (run against local or preview; mark N/A with a reason):
| Check | Command | Expected |
|---|---|---|
| Tenant boundary exists in code | rg -n "x-tenant-id|CREATE POLICY|FORCE ROW LEVEL SECURITY|DISPATCHER.get" . | Hits in proxy or dispatch Worker and in the schema |
| Unknown host is 404 | curl -sI -H "Host: nope.acme.app" <url> | 404 |
| Forged header ignored | curl -s -H "Host: a.acme.app" -H "x-tenant-id: tenant-b" <url>/api/whoami | Tenant A |
| Static files vary | curl -s -H "Host: a.acme.app" <url>/robots.txt vs -H "Host: b.acme.app" | Different bodies, Content-Type: text/plain |
| RLS holds for the app role | psql -c "BEGIN; SET LOCAL ROLE app_user; SELECT set_config('app.tenant_id','<t1>',true); SELECT count(*) FROM posts; ROLLBACK;" | Only tenant t1's rows |
| ACME path reachable | curl -sI -H "Host: tenant.com" <url>/.well-known/acme-challenge/test | Not a redirect into the tenant segment |
| Limits current | Access date next to each URL in the limits table | Dated within the planning window |
Related skills
codebase-architecture: folder structure, module contracts, and the request-context pipeline for the application itself.scaffold-nextjs: bootstrap the Next.js turborepo before applying these tenancy patterns.seo: content of per-tenantrobots.txt,sitemap.xml,llms.txt, canonical URLs, and structured data once routing serves them.
Maintenance only: evals/evals.json contains regression scenarios for changes to this skill; it does not load during a user task.
Signals
- GitHub stars
- 111
- Forks
- 11
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
multi-tenant-architecture- Source
- github.com/mblode/agent-skills