Blame SOURCES/nginx.logrotate

d78c9c
$logdir/*log {
d78c9c
    create 0644 nginx nginx
d78c9c
    daily
d78c9c
    rotate 10
d78c9c
    missingok
d78c9c
    notifempty
d78c9c
    compress
d78c9c
    sharedscripts
d78c9c
    postrotate
d78c9c
        /bin/kill -USR1 `cat $localstatedir/run/nginx/nginx.pid 2>/dev/null` 2>/dev/null || true
d78c9c
    endscript
d78c9c
}
d78c9c