nginx/SOURCES/nginx.suse.logrotate

16 lines
355 B
Text
Raw Normal View History

2025-01-24 10:07:25 +03:00
/var/log/nginx/*.log {
daily
missingok
rotate 52
compress
delaycompress
notifempty
create 640 nginx trusted
sharedscripts
postrotate
if [ -f /var/run/nginx.pid ]; then
kill -USR1 `cat /var/run/nginx.pid`
fi
endscript
}