nginx/templates/logrotate/nginx.j2
2021-03-03 09:31:54 +01:00

12 lines
235 B
Django/Jinja

/var/log/nginx/*log {
create 0644
{{ nginx_logrotate_period }}
rotate {{nginx_logrotate_number}}
missingok
notifempty
sharedscripts
postrotate
/bin/kill -USR1 `cat /run/nginx.pid 2>/dev/null` 2>/dev/null || true
endscript
}