Created
December 31, 2018 09:32
-
-
Save mhemrg/6275691101e0c46682729e1170153128 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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