philomena/docker/app/purge-cache

18 lines
400 B
Bash
Executable file

#!/usr/bin/env sh
# Run your custom purge command here.
#
# The script receives the list of URLs to be purged
# as JSON on the first argument.
#
# {"files":[]}
body="$1"
api_token=
zone_id=
# curl -XPOST \
# -H "Content-Type: application/json" \
# -H "Authorization: Bearer ${api_token}" \
# "https://api.cloudflare.com/client/v4/zones/${zone_id}/purge_cache" \
# -d "${body}"