Shrink backup sizes
This commit is contained in:
parent
4e652c91ae
commit
68a9421445
@ -135,7 +135,7 @@ return [
|
||||
*/
|
||||
'monitor_backups' => [
|
||||
[
|
||||
'name' => config(config('app.name'), 'phpvms-backup'),
|
||||
'name' => config('app.name'),
|
||||
'disks' => ['local'],
|
||||
'health_checks' => [
|
||||
MaximumAgeInDays::class => 1,
|
||||
@ -172,27 +172,27 @@ return [
|
||||
/*
|
||||
* The number of days for which backups must be kept.
|
||||
*/
|
||||
'keep_all_backups_for_days' => 7,
|
||||
'keep_all_backups_for_days' => 3,
|
||||
|
||||
/*
|
||||
* The number of days for which daily backups must be kept.
|
||||
*/
|
||||
'keep_daily_backups_for_days' => 7,
|
||||
'keep_daily_backups_for_days' => 2,
|
||||
|
||||
/*
|
||||
* The number of weeks for which one weekly backup must be kept.
|
||||
*/
|
||||
'keep_weekly_backups_for_weeks' => 4,
|
||||
'keep_weekly_backups_for_weeks' => 2,
|
||||
|
||||
/*
|
||||
* The number of months for which one monthly backup must be kept.
|
||||
*/
|
||||
'keep_monthly_backups_for_months' => 4,
|
||||
'keep_monthly_backups_for_months' => 1,
|
||||
|
||||
/*
|
||||
* The number of years for which one yearly backup must be kept.
|
||||
*/
|
||||
'keep_yearly_backups_for_years' => 2,
|
||||
'keep_yearly_backups_for_years' => 1,
|
||||
|
||||
/*
|
||||
* After cleaning up the backups remove the oldest backup until
|
||||
|
Loading…
Reference in New Issue
Block a user