mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
18 lines
400 B
Bash
Executable file
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}"
|