logrotate.conf 434 B

1234567891011121314151617181920
  1. # see "man logrotate" for details
  2. # rotate log files weekly
  3. weekly
  4. # keep 4 weeks worth of backlogs
  5. rotate 4
  6. # create new (empty) log files after rotating old ones
  7. create
  8. # use date as a suffix of the rotated file
  9. dateext
  10. # uncomment this if you want your log files compressed
  11. #compress
  12. # packages drop log rotation information into this directory
  13. include /etc/logrotate.d
  14. # system-specific logs may be also be configured here.