19 lines
330 B
Text
19 lines
330 B
Text
|
/var/log/nginx/*.log {
|
||
|
weekly
|
||
|
missingok
|
||
|
rotate 12
|
||
|
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
|
||
|
invoke-rc.d nginx rotate >/dev/null 2>&1
|
||
|
endscript
|
||
|
}
|