Header types
Host header

Host Header
Set this when your origin uses virtual hosting or its TLS cert is for a name other than the distribution hostname.
CORS headers

CORS Headers
*— allow any origin (fine for fully public assets).- Specify Origin — allowlist a domain (e.g.
https://app.yoursite.com). The CDN echoes that exact origin inAccess-Control-Allow-Originonly when the request matches.
Request headers
Toggle Request Header on, click Add Header, then set name + value. The header is added to every origin fetch. Use cases:- Tagging —
X-Edge-Pop: <auto>for log correlation. - Auth forwarding — pin an
Authorization: Bearer ...for a private origin. - Routing —
X-Tenant: prodso a multi-tenant origin picks the right backend.
Response headers

Response Header
Security header recipe
A reasonable baseline for static / SPA distributions:
Verify:
Hide leaky headers
Response cache headers
AddCache-Control at the edge to override or supplement origin headers:
For path-specific TTLs, prefer Cache rules — they affect the edge cache, while a
Cache-Control response header instructs the browser.