AI Bot Blocking in Vultr CDN Pull Zones helps protect your content by preventing unwanted AI bots from accessing your site. This feature safeguards your site from harmful traffic and ensures that your bandwidth is utilized efficiently by real users only. By enabling AI Bot blocking, you can enhance security and maintain optimal performance for your content delivery.
Follow this guide to enable the AI Bot blocking feature for Vultr CDN Pull Zones on your Vultr account using the Vultr Customer Portal, API, or CLI.
Send a GET
request to the List CDN Pull Zones endpoint and note the target Pull Zone subscription's ID.
$ curl "https://api.vultr.com/v2/cdns/pull-zones" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a PUT
request to the Update CDN Pull Zone endpoint to enable AI Bot blocking feature for your target Pull Zone subscription.
$ curl "https://api.vultr.com/v2/cdns/pull-zones/{pullzone-id}" \
-X PUT \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json" \
--data '{
"block_ai": true
}'
List all available CDN Pull Zone subscriptions and note the target Pull Zone subscription's ID.
$ vultr-cli cdn pull list
Enable AI Bot blocking feature for your target Pull Zone subscription.
$ vultr-cli cdn pull update <pullzone-id> --block-ai
No comments yet.