22 lines
356 B
Text
22 lines
356 B
Text
# GitLab logrotate settings
|
|
# based on: http://stackoverflow.com/a/4883967
|
|
|
|
/home/git/gitlab/log/*.log {
|
|
weekly
|
|
missingok
|
|
rotate 52
|
|
compress
|
|
delaycompress
|
|
notifempty
|
|
copytruncate
|
|
}
|
|
|
|
/home/git/gitlab-shell/gitlab-shell.log {
|
|
weekly
|
|
missingok
|
|
rotate 52
|
|
compress
|
|
delaycompress
|
|
notifempty
|
|
copytruncate
|
|
}
|