Skip to content

Instantly share code, notes, and snippets.

@kirkbushell
Created April 13, 2020 02:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kirkbushell/cedeb8a24488de2797672b614a0d46e2 to your computer and use it in GitHub Desktop.
Save kirkbushell/cedeb8a24488de2797672b614a0d46e2 to your computer and use it in GitHub Desktop.
filesystems.php
<?php
'cloud' => env('FILESYSTEM_CLOUD', 'do'),
..
'do' => [
'driver' => 's3',
'key' => env('DO_ACCESS_KEY_ID'),
'secret' => env('DO_SECRET_ACCESS_KEY'),
'region' => env('DO_DEFAULT_REGION'),
'bucket' => env('DO_BUCKET'),
'url' => env('DO_URL'),
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment