You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
289 B
7 lines
289 B
# m h dom mon dow command
|
|
# Run Nextcloud cron tasks every 5 minutes
|
|
*/5 * * * * php -f /var/www/html/nextcloud/cron.php
|
|
# Dump database every hour
|
|
10 * * * * /usr/local/bin/dbdump 01
|
|
# Scan for new files every 15 minutes
|
|
*/15 * * * * nc-occ files:scan --all
|
|
|