Blame SOURCES/nginx.logrotate

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