summarylogtreecommitdiffstats
path: root/logrotate
blob: 528e1fc28ef6a19436867c1ba84c98b2c6f84f40 (plain)
1
2
3
4
5
6
7
8
9
10
/var/log/nginx/*log {
  missingok
  notifempty
  create 640 http root
  sharedscripts
  compress
  postrotate
    [[ -f /run/nginx.pid ]] && kill -USR1 $(cat /run/nginx.pid)
  endscript
}