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

15 lines
261 B
Plaintext
Raw Normal View History

2023-05-09 05:22:20 +00:00
/var/log/nginx/*.log {
create 0640 nginx root
2022-05-17 08:45:53 +00:00
daily
rotate 10
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/bin/kill -USR1 `cat /run/nginx.pid 2>/dev/null` 2>/dev/null || true
endscript
}