Guest User

Untitled

a guest
Dec 18th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. # cd /etc/
  2. # sudo nano/vim logrotate.conf
  3. # add to end of file
  4.  
  5. # rotate app logs
  6.  
  7. / PATH TO APP LOGS /current/log/*.log {
  8. daily
  9. missingok
  10. rotate 7
  11. compress
  12. delaycompress
  13. notifempty
  14. copytruncate
  15. }
Add Comment
Please, Sign In to add comment