/opt/openitc/logs/nginx/*.log {
	daily
	rotate 7
	compress
	delaycompress
	notifempty
	create 0640 www-data adm
	sharedscripts
	prerotate
		if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
			run-parts /etc/logrotate.d/httpd-prerotate; \
		fi \
	endscript
	postrotate
		/bin/kill -USR1 `cat /run/nginx.pid 2>/dev/null 2>/dev/null` || true
	endscript
}
