Content delivery networks (CDNs)
Back to home
On this page
Using a CDN speeds up the delivery of your site’s content to its users. The CDN deploys edge servers at many locations around the world. These edge servers behave like local caches to nearby users. Bringing content closer to users helps enhance your site’s perceived performance and so can improve user engagement and retention.
Fastly is the recommended CDN for Platform.sh projects. By default, Dedicated projects include a Fastly CDN managed by Platform.sh. Self-service Grid plans don’t include a CDN by default, but you can set up one at any time, such as Fastly or Cloudflare.
DNS records
To start routing client traffic through your CDN, set up a custom domain.
If you use CNAME
records for your custom domain, these records can’t point to apex domains.
But most CDN providers offer workarounds.
For example, Fastly offers Anycast options
and Cloudflare offers CNAME
flattening.
Host header forwarding
When an HTTP request is made to a website, the client adds a Host
header to the request.
The value of this header is the domain name the request is made to.
When a server hosts multiple websites, like what a CDN does,
it can use the Host
header to identify which domain to access to handle the request.
When a request is made from a client to fetch a resource on a CDN edge server,
the Host
header value is rewritten to point to the CDN.
If the requested resource isn’t cached on the edge server,
the edge server makes a request to the Platform.sh server to pull and cache the resource.
For this process to be successful,
set an X-Forwarded-Host
header to forward the original Host
header value to the Platform.sh server.
Use your root domain as the value of your X-Forwarded-Host
header,
for example: example.com
.
To ensure your app handles the X-Forwarded-Host
header,
you might need to adjust your app configuration.
For more information on how to set up an X-Forwarded-Host
HTTP header,
see your CDN provider’s official documentation.
Disable the router cache
When you use a CDN, the Platform.sh router HTTP caching becomes redundant. To disable it, change your cache configuration for the routes behind a CDN to the following:
"https://{default}/":
type: upstream
upstream: "app:http"
cache:
# Disable the HTTP cache on this route. It's handled by the CDN instead.
enabled: false
Configure your CDN to support high SLA
Tier availability
This feature is available for Enterprise and Elite customers. Compare the tiers on our pricing page, or contact our sales team for more information.
If your plan includes high SLA, configure your CDN so that Platform.sh can perform automated monitoring using NodePing. To do so, add all NodePing IP addresses to your CDN’s allowlist.
If you want Platform.sh to limit checks to one or more of the following regions, contact Support:
- North America
- Europe
- East Asia / Oceania
Prevent direct access to your server
When you use a CDN, you might want to prevent direct access to your Platform.sh server for security purposes.
IP filtering and HTTP auth
While using password or IP based authentication might be possible, it is insecure, and unreliable. There are many scenarios in which the implementation can fail, and the security features circumvented.
Furthermore, IP based filtering will usually be impossible due to the fact that most CDNs use the x-forwarded
HTTP header, which your project origin will use as the visitor IP address.
Both methods are highly insecure, and we highly recommend against them.
Enable mTLS
If your CDN provider supports it, you can secure your site through mTLS.
To enable mTLS, follow these steps:
-
Obtain an Origin Certificate Authority (CA) certificate from your CDN provider.
-
Check that the CA certificate is a
.crt
file. If the file is a.pem
file, rename it tocdn.crt
. -
Add the
cdn.crt
file to your Git repository. -
Change your routing configuration for the routes behind a CDN to the following:
.platform/routes.yaml"https://{default}": tls: client_authentication: "require" client_certificate_authorities: - !include type: string path: cdn.crt
The procedure can vary depending on your CDN. Contact your CDN provider for specific assistance.
Note that mTLS is a mutual authentication process. It allows your CDN to check that it’s communicating with your Platform.sh server and vice versa. So in addition to the CA certificate supplied by your CDN provider, you need to create your own TLS certificate.