Blame SOURCES/nginx.logrotate

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