Quick Question?
I Want to Clear the Full Website Cache Every 8 Hours.
I Have the Pro Plan, no specific URL, just the whole website.
What is the Simplest and easiest way to do this?
Quick Question?
I Want to Clear the Full Website Cache Every 8 Hours.
I Have the Pro Plan, no specific URL, just the whole website.
What is the Simplest and easiest way to do this?
cfPurgeAll.sh
) on a linux instance of you choice.#!/bin/bash
ZONE_ID="YOUR_ZONE_ID"
EMAIL="[email protected]"
API_KEY="YOUR_API_KEY"
curl -X DELETE "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/purge_cache" \
-H "X-Auth-Email: $EMAIL" \
-H "X-Auth-Key: $API_KEY" \
-H "Content-Type: application/json" \
--data '{"purge_everything":true}'
chmod +x cfPurgeAll.sh
)0 */8 * * * /path/to/your/file/cfPurgeAll.sh
)Have fun
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.