36 lines
601 B
Plaintext
36 lines
601 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
|
||
|
copytruncate
|
||
|
postrotate
|
||
|
[ ! -f /var/lib/mongodb/mongod.lock ] || kill -USR1 `cat /var/lib/mongodb/mongod.lock`
|
||
|
endscript
|
||
|
}
|