mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Get backups to work again
This is still a littlw wonky tho :(
This commit is contained in:
parent
9cfde523b0
commit
cfe38322b9
|
@ -8,7 +8,7 @@ return [
|
||||||
* The name of this application. You can use this name to monitor
|
* The name of this application. You can use this name to monitor
|
||||||
* the backups.
|
* the backups.
|
||||||
*/
|
*/
|
||||||
'name' => env('APP_URL'),
|
'name' => 'backups',
|
||||||
|
|
||||||
'source' => [
|
'source' => [
|
||||||
|
|
||||||
|
@ -29,8 +29,8 @@ return [
|
||||||
* You can specify individual files as well.
|
* You can specify individual files as well.
|
||||||
*/
|
*/
|
||||||
'exclude' => [
|
'exclude' => [
|
||||||
base_path('vendor'),
|
// base_path('vendor'),
|
||||||
base_path('node_modules'),
|
// base_path('node_modules'),
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -109,7 +109,7 @@ return [
|
||||||
*/
|
*/
|
||||||
'monitorBackups' => [
|
'monitorBackups' => [
|
||||||
[
|
[
|
||||||
'name' => env('APP_URL'),
|
'name' => 'backups',
|
||||||
'disks' => ['local'],
|
'disks' => ['local'],
|
||||||
'newestBackupsShouldNotBeOlderThanDays' => 1,
|
'newestBackupsShouldNotBeOlderThanDays' => 1,
|
||||||
'storageUsedMayNotBeHigherThanMegabytes' => 5000,
|
'storageUsedMayNotBeHigherThanMegabytes' => 5000,
|
||||||
|
@ -151,8 +151,8 @@ return [
|
||||||
* Here you can specify how emails should be sent.
|
* Here you can specify how emails should be sent.
|
||||||
*/
|
*/
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'from' => 'your@email.com',
|
'from' => env('MAIL_FROM_ADDR'), 'your@email.com'),
|
||||||
'to' => 'your@email.com',
|
'to' => env('MAIL_FROM_ADDR'), 'your@email.com'),
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue