From ff1a1cd5fcf2c1a0816305fd93ed03fba38dd3bd Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Sun, 26 Apr 2020 16:45:51 -0700 Subject: [PATCH] Use logical disk names... --- config/backups.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/backups.php b/config/backups.php index 57d71c604..fde856215 100644 --- a/config/backups.php +++ b/config/backups.php @@ -6,12 +6,12 @@ return [ // The backup driver to use for this Panel instance. All client generated server backups // will be stored in this location by default. It is possible to change this once backups // have been made, without losing data. - 'default' => env('APP_BACKUP_DRIVER', 'local'), + 'default' => env('APP_BACKUP_DRIVER', Backup::ADAPTER_WINGS), 'disks' => [ // There is no configuration for the local disk for Wings. That configuration // is determined by the Daemon configuration, and not the Panel. - 'local' => [ + 'wings' => [ 'adapter' => Backup::ADAPTER_WINGS, ],