DouweM / pixbyt

Pixbyt is a self-hosted Tidbyt app server for advanced apps that aren't supported by the official community app server that you can access through Tidbyt's mobile app.
https://pixbyt.dev
MIT License
106 stars 10 forks source link

Document how to keep app logs from filling up system #26

Open DouweM opened 8 months ago

DouweM commented 8 months ago

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.