13 lines
233 B
Plaintext
13 lines
233 B
Plaintext
/usr/local/kong/logs/*.log {
|
|
rotate 14
|
|
daily
|
|
missingok
|
|
compress
|
|
notifempty
|
|
sharedscripts
|
|
postrotate
|
|
if [ -f /usr/local/kong/pids/nginx.pid ]; then
|
|
kill -USR1 `cat /usr/local/kong/pids/nginx.pid`
|
|
fi
|
|
endscript
|
|
} |