azure implementation

This commit is contained in:
Čarodej
2022-04-11 11:59:16 +02:00
parent fbc9eed30b
commit e5f4bad9a9
6 changed files with 314 additions and 99 deletions

View File

@@ -52,5 +52,14 @@ return [
'username' => env('FTP_USERNAME'),
'password' => env('FTP_PASSWORD'),
],
'azure' => [
'driver' => 'azure',
'name' => env('AZURE_STORAGE_NAME'),
'key' => env('AZURE_STORAGE_KEY'),
'container' => env('AZURE_STORAGE_CONTAINER'),
'url' => env('AZURE_STORAGE_URL'),
'prefix' => null,
'connection_string' => env('AZURE_STORAGE_CONNECTION_STRING') // optional, will override default endpoint builder
],
],
];