mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
355 B
Plaintext
16 lines
355 B
Plaintext
3 years ago
|
/var/log/srs/*.log {
|
||
|
daily
|
||
|
missingok
|
||
|
rotate 30
|
||
|
compress
|
||
|
delaycompress
|
||
|
notifempty
|
||
|
create 640 root nobody
|
||
|
sharedscripts
|
||
|
postrotate
|
||
|
if [ -f /var/lib/srs/srs.pid ]; then
|
||
|
kill -USR1 `cat /var/lib/srs/srs.pid`
|
||
|
fi
|
||
|
endscript
|
||
|
}
|