Allow changing the prune age for backups
This commit is contained in:
parent
5bbb36b3cf
commit
e34d31a58c
3 changed files with 12 additions and 6 deletions
|
@ -12,6 +12,10 @@ return [
|
|||
// uses to upload backups to S3 storage. Value is in minutes, so this would default to an hour.
|
||||
'presigned_url_lifespan' => env('BACKUP_PRESIGNED_URL_LIFESPAN', 60),
|
||||
|
||||
// The time in which to wait before automatically marking a backup as failed.
|
||||
// To disable this feature, set the value to `0`.
|
||||
'prune_age' => env('BACKUP_PRUNE_AGE', 60),
|
||||
|
||||
'disks' => [
|
||||
// There is no configuration for the local disk for Wings. That configuration
|
||||
// is determined by the Daemon configuration, and not the Panel.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue