/var/log/nginx/*.log {
	daily
	missingok
	rotate 52
	compress
	delaycompress
	notifempty
	create 640 nginx adm
	sharedscripts
	postrotate
		if [ -f /run/nginx.pid ]; then
			kill -USR1 `cat /run/nginx.pid`
		fi
	endscript
}
