A simple Cloudflare Worker that pings multiple URLs every minute to keep them active.
- Pings multiple URLs every minute
- Easy configuration through environment variables
- One-click deployment to Cloudflare Workers
- Automatic cron trigger setup (every minute)
Set your URLs using numbered environment variables:
1
= First URL to ping2
= Second URL to ping3
= Third URL to ping- And so on...
- Click the "Deploy to Cloudflare Workers" button above
- You'll be prompted to configure environment variables:
- Replace the example URLs with your actual URLs
- Add more numbered variables (4, 5, etc.) if needed
- Click "Deploy" - everything else is configured automatically!
- The Worker runs automatically every minute via cron trigger
- It reads all environment variables with numeric names (1, 2, 3, etc.)
- Sends a GET request to each URL
- Logs success/failure status to Cloudflare Workers dashboard
- Cloudflare account
- GitHub repository (for one-click deployment)
Check ping results in Cloudflare Workers dashboard under "Workers" > "Your Worker" > "Logs"