1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 17:12:30 +01:00

Use logical disk names...

This commit is contained in:
Dane Everitt 2020-04-26 16:45:51 -07:00
parent 53b451e8bf
commit ff1a1cd5fc
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -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,
],