mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-05-04 05:05:58 +00:00
- backup issue fix
This commit is contained in:
+6
-17
@@ -159,26 +159,13 @@ return [
|
|||||||
*/
|
*/
|
||||||
'notifiable' => \Spatie\Backup\Notifications\Notifiable::class,
|
'notifiable' => \Spatie\Backup\Notifications\Notifiable::class,
|
||||||
|
|
||||||
/*'mail' => [
|
'mail' => [
|
||||||
'to' => 'your@example.com',
|
'to' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
||||||
|
|
||||||
'from' => [
|
'from' => [
|
||||||
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
||||||
'name' => env('MAIL_FROM_NAME', 'Example'),
|
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||||
],
|
],
|
||||||
],*/
|
|
||||||
|
|
||||||
'slack' => [
|
|
||||||
'webhook_url' => '',
|
|
||||||
|
|
||||||
/*
|
|
||||||
* If this is set to null the default channel of the webhook will be used.
|
|
||||||
*/
|
|
||||||
'channel' => null,
|
|
||||||
|
|
||||||
'username' => null,
|
|
||||||
|
|
||||||
'icon' => null,
|
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
@@ -189,8 +176,10 @@ return [
|
|||||||
*/
|
*/
|
||||||
'monitor_backups' => [
|
'monitor_backups' => [
|
||||||
[
|
[
|
||||||
'name' => env('APP_NAME', 'laravel-backup'),
|
'name' => env('APP_NAME', 'vuefilemanager-backup'),
|
||||||
'disks' => ['local'],
|
'disks' => [
|
||||||
|
env('FILESYSTEM_DISK', 'local')
|
||||||
|
],
|
||||||
'health_checks' => [
|
'health_checks' => [
|
||||||
\Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumAgeInDays::class => 1,
|
\Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumAgeInDays::class => 1,
|
||||||
\Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumStorageInMegabytes::class => 5000,
|
\Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumStorageInMegabytes::class => 5000,
|
||||||
|
|||||||
Reference in New Issue
Block a user