- 25 Jun 2024
- 1 Minute to read
- Print
- PDF
Client Byte Range Request
- Updated on 25 Jun 2024
- 1 Minute to read
- Print
- PDF
Overview
The Client Byte Range Request rule allows for enabling or disabling client byte range requests for a particular host or path. Range request support is enabled by default. When Client Byte Range Request is disabled, the “Content-Range” header in client requests to the CDN is ignored and the complete file is delivered to the client.
Configure the Rule
Here, we'll describe how to configure the rule with the Delivery Service Management UI.
API Users may choose to build the site configuration offline.
To configure a Byte Range Request rule:
In the Select Rule dialog, choose Client Byte Range Request.
Toggle Client Byte Range Requests on or off.
Choose Add Rule.
SVTA Component: QW.HttpRangeRequests
When you save the configuration version, the QW.HttpRangeRequests component is added to the JSON configuration.
This is a private feature developed by Qwilt. In the JSON format, private features are nested within the MI.PrivateFeaturesList object, in the "generic-metadata-value" "features" field.
In this example, the QW.HttpRangeRequests SVTA component is configured to disable Client Byte Range Requests.
{
"generic-metadata-type": "MI.PrivateFeatureList",
"generic-metadata-value": {
"features": [
{
"feature-oid": "Qwilt",
"feature-type": "QW.HttpRangeRequests",
"feature-value": {
"enable": false
}
}
]
}
}