koel/config/aws.php

31 lines
955 B
PHP
Raw Normal View History

2016-06-13 09:04:42 +00:00
<?php
use Aws\Laravel\AwsServiceProvider;
return [
/*
|--------------------------------------------------------------------------
| AWS SDK Configuration
|--------------------------------------------------------------------------
|
| The configuration options set in this file will be passed directly to the
| `Aws\Sdk` object, from which all client objects are created. The minimum
| required options are declared here, but the full set of possible options
| are documented at:
| http://docs.aws.amazon.com/aws-sdk-php/v3/guide/guide/configuration.html
|
*/
'endpoint' => env('AWS_ENDPOINT', 'https://s3.amazonaws.com'),
'credentials' => [
2020-09-06 21:20:42 +00:00
'key' => env('AWS_ACCESS_KEY_ID'),
2016-06-13 09:04:42 +00:00
'secret' => env('AWS_SECRET_ACCESS_KEY'),
],
'region' => env('AWS_REGION', 'us-east-1'),
'version' => 'latest',
'ua_append' => [
2020-12-22 20:11:22 +00:00
'L5MOD/' . AwsServiceProvider::VERSION,
2016-06-13 09:04:42 +00:00
],
];