From 29a5df7517fa961fb684b0982ba1ec78c58e1669 Mon Sep 17 00:00:00 2001 From: nokonoko Date: Wed, 18 Nov 2020 13:07:28 +0100 Subject: [PATCH] scripts config --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9b3296a..f16a787 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,14 @@ increase POST size limits in `php.ini` and webserver configuration. For PHP, modify `upload_max_filesize` and `post_max_size` values. The configuration option for nginx webserver is `client_max_body_size`. -Edit checkdb.sh and checkfiles.sh to the proper paths then add them to your crontab: +Edit checkdb.sh and checkfiles.sh to the proper paths: +```bash +sqlite3 /path/to/db/uguu.sq3 "DELETE FROM files WHERE date <= strftime('%s', datetime('now', '-1 day'));" +``` +```bash +find /path/to/files/ -mmin +1440 -exec rm -f {} \; +``` +Then add them to your crontab: ```bash 0,30 * * * * bash /path/to/checkfiles.sh 0,30 * * * * bash /path/to/checkdb.sh