Category: General
Add the following script to a cron job:
find /var/log/httpd/ -mtime +3 -exec rm {} ;
This should clear out any log files in /var/log/httpd older than 3 days.
[Linux]
Category: General
Add the following script to a cron job:
find /var/log/httpd/ -mtime +3 -exec rm {} ;
This should clear out any log files in /var/log/httpd older than 3 days.
[Linux]