1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-02-20 21:26:56 +00:00

Merge pull request #550 from bremensaki/patch-1

Expose S3 endpoint setting via config file
This commit is contained in:
daniel 2018-11-25 13:48:42 -07:00 committed by GitHub
commit 720879cb47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -56,12 +56,13 @@ return [
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
'endpoint' => env('AWS_ENDPOINT'),
],
],