mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 21:47:59 +01:00
19 lines
394 B
Text
19 lines
394 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# 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}"
|