Skip to content

Instantly share code, notes, and snippets.

@aonrobot
Created February 20, 2018 09:04
Show Gist options
  • Save aonrobot/5a1ed6b9473600bdedd740318d9d6d0e to your computer and use it in GitHub Desktop.
Save aonrobot/5a1ed6b9473600bdedd740318d9d6d0e to your computer and use it in GitHub Desktop.
'disks' => [
'ftp' => [
'driver' => 'ftp',
'host' => 'xxxx',
'port' => 21,
'username' => 'xxxx',
'password' => 'xxxx',
'passive' => false,
'utf8' => true
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
],
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment