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