Skip to content

Instantly share code, notes, and snippets.

@mhemrg
Created December 31, 2018 09:32
Show Gist options
  • Save mhemrg/6275691101e0c46682729e1170153128 to your computer and use it in GitHub Desktop.
Save mhemrg/6275691101e0c46682729e1170153128 to your computer and use it in GitHub Desktop.
<?php
return [
// ...
'cloud' => env('FILESYSTEM_CLOUD', 's3'),
'disks' => [
// ...
'liara' => [
'driver' => 's3',
'region' => 'us-east-1',
'use_path_style_endpoint' => true,
'key' => env('LIARA_ACCESS_KEY'),
'secret' => env('LIARA_SECRET_KEY'),
'bucket' => env('LIARA_BUCKET'),
'endpoint' => env('LIARA_ENDPOINT'),
],
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment