dpaste/server/logrotate.conf

20 lines
359 B
Text
Raw Permalink Normal View History

/srv/dpaste.de/var/*.log {
monthly
rotate 52
dateext
missingok
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
}