mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
feat: enable usage with S3-compatible services (#1381)
Co-authored-by: sergiustheblack <sergius@goes.black> Co-authored-by: Phan An <me@phanan.net>
This commit is contained in:
parent
92bf0a4958
commit
3872482b61
2 changed files with 3 additions and 0 deletions
|
@ -60,6 +60,7 @@ LASTFM_API_SECRET=
|
|||
AWS_ACCESS_KEY_ID=
|
||||
AWS_SECRET_ACCESS_KEY=
|
||||
AWS_REGION=
|
||||
AWS_ENDPOINT=
|
||||
|
||||
|
||||
# If you want Koel to integrate with YouTube, set the API key here.
|
||||
|
|
|
@ -15,6 +15,8 @@ return [
|
|||
| http://docs.aws.amazon.com/aws-sdk-php/v3/guide/guide/configuration.html
|
||||
|
|
||||
*/
|
||||
'endpoint' => env('AWS_ENDPOINT', 'https://s3.amazonaws.com'),
|
||||
|
||||
'credentials' => [
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
|
|
Loading…
Reference in a new issue