pixbyt
pixbyt copied to clipboard
Document how to keep app logs from filling up system
Currently I just run this using cron every to remove logs older than one day:
sudo find pixbyt/logs/apps/ -type f -mtime +1 -exec rm -fv {} \\;
I may want to look into logrotate.