Blame SOURCES/nginx.logrotate

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