2020-04-04 08:40:20 +02:00
|
|
|
<?php
|
|
|
|
|
2020-04-27 01:07:36 +02:00
|
|
|
use Pterodactyl\Models\Backup;
|
|
|
|
|
2020-04-04 08:40:20 +02:00
|
|
|
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.
|
2020-04-27 01:45:51 +02:00
|
|
|
'default' => env('APP_BACKUP_DRIVER', Backup::ADAPTER_WINGS),
|
2020-04-04 08:40:20 +02:00
|
|
|
|
2020-12-06 21:53:55 +01:00
|
|
|
// This value is used to determine the lifespan of UploadPart presigned urls that wings
|
|
|
|
// 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),
|
|
|
|
|
2020-04-04 08:40:20 +02:00
|
|
|
'disks' => [
|
|
|
|
// There is no configuration for the local disk for Wings. That configuration
|
|
|
|
// is determined by the Daemon configuration, and not the Panel.
|
2020-04-27 01:45:51 +02:00
|
|
|
'wings' => [
|
2020-04-27 01:07:36 +02:00
|
|
|
'adapter' => Backup::ADAPTER_WINGS,
|
|
|
|
],
|
2020-04-04 08:40:20 +02:00
|
|
|
|
2020-04-27 01:07:36 +02:00
|
|
|
// Configuration for storing backups in Amazon S3. This uses the same credentials
|
|
|
|
// specified in filesystems.php but does include some more specific settings for
|
|
|
|
// backups, notably bucket, location, and use_accelerate_endpoint.
|
2020-04-04 08:40:20 +02:00
|
|
|
's3' => [
|
2020-04-27 01:07:36 +02:00
|
|
|
'adapter' => Backup::ADAPTER_AWS_S3,
|
|
|
|
|
|
|
|
'region' => env('AWS_DEFAULT_REGION'),
|
|
|
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
|
|
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
2020-04-04 08:40:20 +02:00
|
|
|
|
|
|
|
// The S3 bucket to use for backups.
|
2020-04-27 01:07:36 +02:00
|
|
|
'bucket' => env('AWS_BACKUPS_BUCKET'),
|
2020-04-04 08:40:20 +02:00
|
|
|
|
|
|
|
// The location within the S3 bucket where backups will be stored. Backups
|
|
|
|
// are stored within a folder using the server's UUID as the name. Each
|
|
|
|
// backup for that server lives within that folder.
|
2020-04-27 01:07:36 +02:00
|
|
|
'prefix' => env('AWS_BACKUPS_BUCKET') ?? '',
|
|
|
|
|
2020-10-30 02:39:55 +01:00
|
|
|
'endpoint' => env('AWS_ENDPOINT'),
|
|
|
|
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
|
2020-04-27 01:07:36 +02:00
|
|
|
'use_accelerate_endpoint' => env('AWS_BACKUPS_USE_ACCELERATE', false),
|
2020-04-04 08:40:20 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|