20 lines
450 B
Text
20 lines
450 B
Text
# see "man logrotate" for details
|
|
# rotate log files weekly
|
|
weekly
|
|
|
|
# keep 4 weeks worth of backlogs
|
|
rotate 4
|
|
|
|
# create new (empty) log files after rotating old ones
|
|
create
|
|
|
|
# uncomment this if you want your log files compressed
|
|
compress
|
|
|
|
# Set a max size of 200MB for any log file before they get rotated
|
|
size 100M
|
|
|
|
# packages drop log rotation information into this directory
|
|
include /etc/logrotate.d
|
|
|
|
# system-specific logs may be configured here
|