36 lines
615 B
Plaintext
36 lines
615 B
Plaintext
/home/rulingcom/*/*/log/*.log {
|
|
daily
|
|
rotate 7
|
|
compress
|
|
missingok
|
|
notifempty
|
|
copytruncate
|
|
postrotate
|
|
[ ! -f /run/nginx.pid ] || kill -USR1 `cat /run/nginx.pid`
|
|
endscript
|
|
}
|
|
|
|
/home/rulingcom/*/*/*/log/*.log {
|
|
daily
|
|
rotate 7
|
|
compress
|
|
missingok
|
|
notifempty
|
|
copytruncate
|
|
postrotate
|
|
[ ! -f /run/nginx.pid ] || kill -USR1 `cat /run/nginx.pid`
|
|
endscript
|
|
}
|
|
|
|
|
|
/var/log/mongodb/*.log {
|
|
daily
|
|
rotate 7
|
|
compress
|
|
missingok
|
|
notifempty
|
|
create 644 mongodb mongodb
|
|
postrotate
|
|
[ ! -f /var/lib/mongodb/mongod.lock ] || kill -USR1 `cat /var/lib/mongodb/mongod.lock`
|
|
endscript
|
|
} |