Active Regions in Vultr CDN Push Zones allow you to specify the regions where your content is stored and delivered. With 32 global locations to choose from, this feature ensures that your data is readily available and served quickly from multiple edge servers, enhancing performance and reducing latency for users in those regions. By updating the active regions, you can optimize content delivery and improve the user experience across various geographic areas.
Follow this guide to update the active regions for Vultr CDN Push Zones on your Vultr account using the Vultr Customer Portal, API, or CLI.
Navigate to Products, click CDN, and then click Push Zones.
Click your target CDN Push Zone service.
Click Regions.
Select any region in which you want a Push Zone.
Deselect any region in which you don't want a Push Zone.
Send a GET
request to the List Push Zones endpoint and note the target Push Zone service's ID.
$ curl "https://api.vultr.com/v2/cdns/push-zones" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a PUT
request to the Update Push Zone to update the Push Zone regions.
$ curl "https://api.vultr.com/v2/cdns/push-zones/<pushzone-id>" \
-X PUT \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"regions": ["ams", "dfw", "sjc"]
}'
List all available CDN Push Zone services and note the target Push Zone service's ID.
$ vultr-cli cdn push list
Update the regions for the target Push Zone service.
$ vultr-cli cdn push update <pushzone-id> --regions "ams,atl,blr"