Analyze CDN response header
In this article you will find out which HTTP headers are set for the CDN responses and what they mean.
In this example, we use curl
to show which headers are sent. The HTTP headers can also be analyzed using the Google Chrome Dev Tools.
Example response of a CDN request:
curl -I https://content.cstatic.io/assets/img/creoline-logo.svg
HTTP/2 200
content-type: text/html; charset=UTF-8
vary: Accept-Encoding
cache-control: max-age=31536000, public, s-maxage=86400, stale-if-error=86400, stale-while-revalidate=86400
access-control-allow-origin: *
x-creoline-engine: 4.0.1
x-creoline-original-size: 41946
x-creoline-cdn-host: content.cstatic.com
x-creoline-cdn-path: /assets/img/creoline-logo.svg
x-creoline-renderer: n.backend.cstatic.com
accept-ranges: bytes
age: 102348
x-creoline-cache: HIT
x-creoline-cache-lifetime: 86400
server: creoline
x-creoline-edge: FRANKFURT
x-creoline-edge-frontend: fra.de.eu.cstatic.com
x-creoline-edge-backend: b.fra.de.eu.cstatic.com
Response Header
Cache-Control
The Cache-Control header controls the caching behavior of the edge server and client.
Value | Description |
---|---|
max-age | Maximum time in seconds that the browser may deliver the response from the cache. |
s-maxage | Maximum time in seconds that the CDN edge server may deliver the response from the cache. |
stale-if-error | Maximum time in seconds that the CDN edge server is allowed to deliver the response from the cache if the upstream server (target server) does not deliver a valid response. |
stale-while-revalidate | Maximum time in seconds that the CDN edge server may deliver the response from the cache while a resource update is already active between the CDN edge server and the upstream server (target server). |
x-creoline-edge-frontend
The Edge Frontend header provides information about which Edge server was used to deliver the static file. The next possible server is selected via our Anycast DNS network. \n
The scheme is identical for all locations and is based on the following scheme:
location, country, account .cstatic.com
.
- In this example: fra.de.eu.cstatic.com
x-creoline-cache
The cache header provides information about the current status of the CDN cache. The following values are possible:
HIT
The static file is already in the CDN cache and is synchronized with the target server at the earliest when the cache TTL (Expires Header) is reached.
STALE
The cache TTL has been reached and exceeded. The static file continues to be delivered by the CDN cache despite the cache TTL being exceeded and is then updated in the background. Regardless of the set cache TTL, the cache for each static file is kept in STALE mode for 7 days after the TTL expires in order to ensure the best possible response times with few calls.
MISS
The static resource is not (yet) in the CDN cache and had to be downloaded from the target server in parallel. As soon as the identical resource is requested again, a HIT is returned by the CDN.
content-type
The Content-Type header provides the actual mime type of the response. Depending on the CDN setting selected, the Content-Type may differ from the actual source file.
x-original-content-type
The Original-Content-Type header returns the value of the original content. If, for example, a JPG graphic is converted to a WebP graphic, image/jpg
is returned here as the original value.
Link
Duplicated content can be avoided with the help of the link response header. Example:
link: <https://www.creoline.de/assets/img/creoline-logo.svg>; rel="canonical"
Double indexing can be avoided by specifying the original source.
WebP conversion
When converting to WebP graphics, the original URL with a .jpg
or .png
suffix is not changed in order to ensure backward compatibility with older browsers without WebP support. The conversion process and the original format are returned via the x-converted
and x-original-content-type
headers.
Example response header:
x-converted: image/jpeg to image/webp
x-original-content-length: 80000
x-original-content-type: image/jpeg
x-quality: 80
The automatic WebP conversion is controlled via the HTTP header Accept
. In order for the original JPG or PNG graphic to be converted to WebP, the client must send the Accept
header with the value image/webp
. Otherwise, the original graphic is compressed as best as possible and returned to the client.