Last updated
There are plenty of good articles out there about how to use the script provided by Google but I struggled to find information on how to set up the cron job for the task.
So in case anyone else needs it here’s a cron job that works for me on Unix. You need to make sure you specify absolute paths. If you don’t have root access then talk to your host but they should tell you where python resides. If you want to find out your document root you can find this in PHP by using the phpinfo() function.
This runs the scheduled task of generating a sitemap each day at 6am.
0 6 * * * /enter/your/path/to/python /enter/your/path/to/sitemap/_gen.py --config=/enter/your/path/to/example/_config.xml
Have an update or suggestion for this article? You can edit it here and send me a pull request.
Using HashiCorp Vault with LDAP
How to use HashiCorp Vault to setup an LDAP backed secret store with read-only access for users in groups and read-write access for specific users
Linux and Unix xargs command tutorial with examples
Tutorial on using xargs, a UNIX and Linux command for building and executing command lines from standard input. Examples of cutting by character, byte position, cutting based on delimiter and how to modify the output delimiter.
Copy a file in Go
How to copy a file in Go. The ioutil package does not offer a shorthand way of copying a file. Instead the os package should be used.