forked from rpms/nginx
1
0
Fork 0
nginx/SOURCES/nginx.logrotate

14 lines
233 B
Plaintext
Raw Normal View History

2021-11-03 13:31:09 +00:00
/var/log/nginx/*log {
daily
rotate 10
missingok
notifempty
compress
2022-01-11 16:50:22 +00:00
delaycompress
2021-11-03 13:31:09 +00:00
sharedscripts
postrotate
/bin/kill -USR1 `cat /run/nginx.pid 2>/dev/null` 2>/dev/null || true
endscript
}