将以下几行放入/etc/logrotate.d/httpd
:
/var/log/httpd/*log {
missingok
notifempty
sharedscripts
daily
rotate 7
postrotate
/sbin/service httpd reload > /var/log/httpd/rotate 2>&1 || true
endscript
compress
}
Run Code Online (Sandbox Code Playgroud)