*/ public array $fileManagers = [ 'fs' => FS::class, 's3' => S3::class, ]; /** * @var array */ public array $s3 = [ 'bucket' => 'castopod', 'key' => '', 'secret' => '', 'region' => '', 'protocol' => '', 'endpoint' => '', 'debug' => false, 'pathStyleEndpoint' => false, 'keyPrefix' => '', 'serveWithRedirect' => false, ]; /** * -------------------------------------------------------------------------- * Media Base URL * -------------------------------------------------------------------------- * * URL to your media root. Typically this will be your base URL, * WITH a trailing slash: * * http://cdn.example.com/ */ public string $baseURL = 'http://localhost:8080/'; /** * -------------------------------------------------------------------------- * Media root folder * -------------------------------------------------------------------------- * Defines the root folder for media files storage */ public string $root = 'media'; /** * -------------------------------------------------------------------------- * Media storage folder * -------------------------------------------------------------------------- * Defines the folder used to store the media root folder */ public string $storage = ROOTPATH . 'public'; /** * @var array */ public array $folders = [ 'podcasts' => 'podcasts', 'persons' => 'persons', ]; }