Blame SOURCES/nginx.logrotate

06bde5
/var/log/nginx/*log {
06bde5
    create 0664 nginx root
06bde5
    daily
06bde5
    rotate 10
06bde5
    missingok
06bde5
    notifempty
06bde5
    compress
06bde5
    sharedscripts
06bde5
    postrotate
06bde5
        /bin/kill -USR1 `cat /run/nginx.pid 2>/dev/null` 2>/dev/null || true
06bde5
    endscript
06bde5
}
06bde5