Update configuration.md

This commit is contained in:
Sergio Brighenti 2021-04-25 13:26:05 +02:00 committed by GitHub
parent 32de7376e1
commit 53715b9747
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -92,6 +92,21 @@ return array(
)
);
```
For any filesystem S3-compatible, it's possible to specify an `endpoint` (for i.e. Minio)
```php
return array(
...
'storage' => array (
'driver' => 's3',
'endpoint' => 'my-custom-endpoint',
'key' => 'the-key',
'secret' => 'the-secret',
'region' => 'the-region',
'bucket' => 'bucket-name',
'path' => 'optional/path/prefix',
)
);
```
+ Dropbox
```php
@ -167,4 +182,4 @@ return array(
'app_name' => 'This line will overwrite "XBackBone"',
...
);
```
```