From 3ffab18a49a38dfc56bf55f307de6837fcc87e61 Mon Sep 17 00:00:00 2001 From: nokonoko Date: Wed, 18 Nov 2020 13:04:23 +0100 Subject: [PATCH] fixed --- README.md | 8 ++++++++ checkdb.sh | 1 + checkfiles.sh | 2 ++ 3 files changed, 11 insertions(+) create mode 100644 checkdb.sh create mode 100644 checkfiles.sh diff --git a/README.md b/README.md index 1c9af82..9b3296a 100644 --- a/README.md +++ b/README.md @@ -69,6 +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: +```bash +0,30 * * * * bash /path/to/checkfiles.sh +0,30 * * * * bash /path/to/checkdb.sh +``` + +These scripts check if DB entries and files are older then 24 hours and if they are deletes them. + Example nginx configs can be found in confs/. ## Using SQLite as DB engine diff --git a/checkdb.sh b/checkdb.sh new file mode 100644 index 0000000..7f6916f --- /dev/null +++ b/checkdb.sh @@ -0,0 +1 @@ +sqlite3 /path/to/db/uguu.sq3 "DELETE FROM files WHERE date <= strftime('%s', datetime('now', '-1 day'));" \ No newline at end of file diff --git a/checkfiles.sh b/checkfiles.sh new file mode 100644 index 0000000..5c9e4bd --- /dev/null +++ b/checkfiles.sh @@ -0,0 +1,2 @@ +#! /bin/sh +find /path/to/files/ -mmin +1440 -exec rm -f {} \; \ No newline at end of file