ログローテーション

ログのローテーションをちょっと変更。webalizerなど用もふくめ。
apacheのログローテーションポリシー↓
毎日ローテーション+ログは21個(3週間分)残す
file: /etc/logrotate.d/apache

/var/log/httpd/*log {
    daily
    rotate 21
    missingok
    notifempty
    sharedscripts
    postrotate
        /bin/kill -HUP `cat /var/run/httpd.pid 2>/dev/null` 2> /dev/null || true
    endscript
}