21 lines
301 B
Text
21 lines
301 B
Text
# GitLab logrotate settings
|
|
|
|
/home/git/gitlab/log/*.log {
|
|
su git git
|
|
daily
|
|
missingok
|
|
rotate 90
|
|
compress
|
|
notifempty
|
|
copytruncate
|
|
}
|
|
|
|
/home/git/gitlab-shell/gitlab-shell.log {
|
|
su git git
|
|
daily
|
|
missingok
|
|
rotate 90
|
|
compress
|
|
notifempty
|
|
copytruncate
|
|
}
|