Skip to content

Instantly share code, notes, and snippets.

@Repox
Created August 18, 2014 19:10
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save Repox/e6cbee28c4310c3885e9 to your computer and use it in GitHub Desktop.
Save Repox/e6cbee28c4310c3885e9 to your computer and use it in GitHub Desktop.
Laravel logrotate configuration (1 daily rotation, 7 days retention)
/home/laravel/app/storage/logs/laravel.log {
daily
missingok
rotate 7
maxage 7
compress
notifempty
create 755 user group
su user group
}
@hsleewis
Copy link

Just found the solution, add "copytruncate" so the actual laravel.log file stays the same. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment