Browse Source

Update configuration.md

Sergio Brighenti 4 năm trước cách đây
mục cha
commit
53715b9747
1 tập tin đã thay đổi với 16 bổ sung1 xóa
  1. 16 1
      docs/configuration.md

+ 16 - 1
docs/configuration.md

@@ -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"',
     ...
 );
-```
+```