git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/localfs/etc/logrotate.d/httpd
blob: 90c024d60ac9a0f84c46ba6069c447cf1652ecda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/var/log/httpd/*log {
    daily
    rotate 365
    missingok
    notifempty
    sharedscripts
    delaycompress
    compresscmd /bin/xz
    compressext .xz
    dateext
    dateformat -%Y-%m-%d
    postrotate
        /bin/systemctl reload httpd.service > /dev/null 2>/dev/null || true
    endscript
}