summaryrefslogtreecommitdiffstats
path: root/network/lighttpd/conf/lighttpd.logrotate
blob: 7001f869bd27949dc706cca3039b079db989bf23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/var/log/lighttpd/*.log {
	su @USER@ @GROUP@
	daily
	missingok
	copytruncate
	rotate 7
	create 0644 lighttpd lighttpd
	compress
	notifempty
	sharedscripts
	postrotate
	if [ -x /etc/rc.d/rc.lighttpd -a -f /var/run/lighttpd.pid ]; then
		/etc/rc.d/rc.lighttpd reload
	fi
	endscript
}