Skip to content

Commit

Permalink
Merge pull request laravel#14 from camelCaseD/5.0
Browse files Browse the repository at this point in the history
Configuration for base_url of Amazon S3
  • Loading branch information
taylorotwell committed Apr 15, 2015
2 parents 78f2e01 + b80d41c commit 6dc448b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions config/filesystems.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,12 @@
],

's3' => [
'driver' => 's3',
'key' => env('S3_KEY'),
'secret' => env('S3_SECRET'),
'region' => env('S3_REGION'),
'bucket' => env('S3_BUCKET'),
'driver'   => 's3',
'key' => env('S3_KEY'),
'secret' => env('S3_SECRET'),
'region' => env('S3_REGION'),
'bucket' => env('S3_BUCKET'),
'base_url' => env('S3_URL'),
],

'rackspace' => [
Expand Down

0 comments on commit 6dc448b

Please sign in to comment.