nginx 324 B

1234567891011121314
  1. /var/log/nginx/*.log {
  2. daily
  3. missingok
  4. rotate 32
  5. compress
  6. delaycompress
  7. nodateext
  8. notifempty
  9. create 644 www-data root
  10. sharedscripts
  11. postrotate
  12. [ -f /var/run/nginx.pid ] && kill -USR1 `cat /var/run/nginx.pid`
  13. endscript
  14. }