Update configuration.md
This commit is contained in:
parent
32de7376e1
commit
53715b9747
1 changed files with 16 additions and 1 deletions
|
@ -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"',
|
||||
...
|
||||
);
|
||||
```
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue