Hi, I want to use cron to load my sitemap_index.xml file, so that the sitemap_index.xml can be cached on Cloudflare every hour. I set up cron like this: 35 */1 * * * wget -O - -q -t 1 https://mydomain.com/sitemap_index.xml > /dev/null 2>&1 I check...