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

15 lines
261 B
Plaintext
Raw Normal View History

2023-03-28 11:24:54 +00:00
/var/log/nginx/*.log {
create 0640 nginx root
2021-11-03 13:31:09 +00:00
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
}