Blame SOURCES/nginx.logrotate

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