0
0
opnxng-deploy-playbook/templates/conf/nitter/nginx.j2

31 lines
461 B
Plaintext
Raw Normal View History

2023-12-08 09:12:57 +08:00
/var/log/nginx/*.log {
daily
missingok
rotate 52
compress
delaycompress
notifempty
create 640 nginx adm
sharedscripts
postrotate
if [ -f /var/run/nginx.pid ]; then
kill -USR1 `cat /var/run/nginx.pid`
fi
endscript
}
/var/log/nginx/nitter_error.log {
rotate 30
size 10M
dateext
dateformat -%Y-%m-%d
missingok
compress
sharedscripts
postrotate
if [ -f /var/run/nginx.pid ]; then
kill -USR1 `cat /var/run/nginx.pid`
fi
endscript
}