Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab « logrotate « support « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43fa8eb963c71b016520ed0147460263c96f0993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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
}