Edge setup without Cloudflare
Use RenderBeam on Vercel, Netlify, or any platform via the *.edge.renderbeam.com CNAME flow.
Updated 5/4/2026
Overview
If you don't use Cloudflare you don't need a worker. RenderBeam runs an edge of its own at *.edge.renderbeam.com that does the same bot detection, caching, and origin pass-through.
How it works
- You CNAME your domain (or a
www.subdomain) toyourdomain.edge.renderbeam.com. - Our edge terminates TLS, looks up your project by hostname, and:
- bot → serves the cached pre-rendered HTML (or renders fresh on miss)
- human → passes through to your real origin - Fail-open: if anything goes wrong, traffic falls through to your origin.
The dashboard detects Vercel and Netlify automatically and posts the required JSON to their respective APIs to set up the host header — you only need to add the CNAME.
Vercel
- Project → Settings → Domains → add your domain.
- When Vercel asks for the CNAME target, enter
yourdomain.edge.renderbeam.com. - In the RenderBeam dashboard, paste your Vercel deploy URL as the origin URL so we know where to fetch un-rendered content.
Netlify
- Site configuration → Domain management → add custom domain.
- CNAME target:
yourdomain.edge.renderbeam.com. - Set your Netlify site URL as the origin in the RenderBeam dashboard.
Other platforms
Anywhere you control DNS works:
- Add a CNAME from your apex (or
www.) toyourdomain.edge.renderbeam.com. - Set the origin URL in the dashboard to the URL where your real origin lives (e.g.
myapp.fly.dev). - We handle TLS at the edge.
Verify
bash
curl -A "Googlebot" -I https://yourdomain.comYou should see X-Cache-Status and X-Rendered-By: RenderBeam. A normal browser request will pass through to your origin unchanged.
Was this page helpful?