Configure CDN
Describes how to configure header settings with regards to personalization in a Content Delivery Network (CDN) environment for Optimizely Content Management System (CMS).
In Content Delivery Networks (CDNs), requests to the web server often come from an edge server and not from the actual client; the HttpContext.Request.UserHostAddress
property reflects the edge server's IP address rather than the connecting client's.
When personalizing content based on the client's IP address (for example, geolocation), the content should be based on the client's IP address and not the edge server's.
CDNs forward the connecting client information in the HTTP headers, so to be able to personalize content based on the IP address in a CDN, you must configure the header with true IP (change the header name based on the header sent from the CDN, the header name differs between CDNs):
{
"EPiServer": {
"Cms": {
"ClientGeolocation": {
"IPAddressHeader": "True-Client-IP"
}
}
}
}
Use X-Forwarded-For header
Header X-Forwarded-For
is supported by most CDNs; this header contains a comma-separated list of IP addresses, one for each CDN or proxy a request passes through. This header is supported by using the same setting.
{
"EPiServer":{
"Cms":{
"ClientGeolocation":{
"IPAddressHeader":"X-Forwarded-For"
}
}
}
}
You can specify the number of CDNs or proxies the header is expected to contain. The default value is 1; change this value if more than one CDN or proxy is used.
{
"EPiServer":{
"Cms":{
"ClientGeolocation":{
"IPAddressHeaderProxyCount":"2"
}
}
}
}
Note
The reason the number of CDNs/proxies has to be specified is to protect against IP spoofing. The setting
episerver:ClientIPAddressProxyCount
is available as of CMS.Core 9.3.2, in previous versions the default value of 1 cannot be changed.
Retrieve geographic location
Some CDN providers, such as Cloudflare, also provide a feature where the CDN identifies a visitor's geographic location and adds the country code in one of the headers passed to the web server. As of version 11.9.0 of Optimizely Content Management System (CMS), it is now possible to base geographic personalization on this header rather than doing a separate IP lookup using a Geolocation Provider. To enable this feature, you must specify which header should be used to retrieve the country code.
{
"EPiServer":{
"Cms":{
"ClientGeolocation":{
"LocationHeader":"CF-IPCountry"
}
}
}
}
Note
Header-based geolocation is only used when no Geolocation provider has been configured and that it is limited to Country and Continent locations. This feature is turned on by default for all Optimizely Digital Experience Platform (DXP) customers.
Updated 10 months ago