summarylogtreecommitdiffstats
path: root/logrotate
blob: b7719f0ce97c6e2d666bd6e5cfcf5179883d743c (plain)
1
2
3
4
5
6
7
8
9
10
11
/var/log/nginx/*log
{
	missingok
	notifempty
	create 640 http log
	sharedscripts
	compress
	postrotate
		test ! -r /var/run/nginx.pid || kill -USR1 `cat /var/run/nginx.pid`
	endscript
}