mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-01 16:04:19 +00:00
22 lines
301 B
Plaintext
22 lines
301 B
Plaintext
# 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
|
|
}
|