04/18 Enhance app (security, performance)

This commit is contained in:
2026-04-18 13:20:04 -04:00
parent b51468661e
commit 4d3f9844f0
14 changed files with 529 additions and 7 deletions
+16
View File
@@ -0,0 +1,16 @@
# PassKeeper — automated database backup cron
#
# Install:
# crontab -e
# Paste the line below, then save.
#
# What it does:
# Runs backup_db.sh at 02:00 daily.
# stdout/stderr is redirected to backup.log; cron will also email on failure
# if MAILTO is configured in the system crontab.
#
# Adjust the path to match your deployment directory.
MAILTO=""
0 2 * * * /bin/bash /home/spuser/PassKeeper/scripts/backup_db.sh >> /home/spuser/backups/passkeeper/backup.log 2>&1