wdcsx 发表于 2018-11-6 11:25:35

Nginx,PHP-FPM,Redis,Twemproxy等的日志轮转

/data/app_data/nginx/logs/*.log {  
      daily
  
      missingok
  
      rotate 52
  
      compress
  
      delaycompress
  
      notifempty
  
      create
  
      sharedscripts
  
      postrotate
  
                [ -f /data/app_data/nginx/logs/nginx.pid ] && kill -USR1 `cat /data/app_data/nginx/logs/nginx.pid`
  
      endscript
  
}


页: [1]
查看完整版本: Nginx,PHP-FPM,Redis,Twemproxy等的日志轮转