From 53715b9747acc0ab880b0b82c393a690d51e0b3a Mon Sep 17 00:00:00 2001 From: Sergio Brighenti Date: Sun, 25 Apr 2021 13:26:05 +0200 Subject: [PATCH] Update configuration.md --- docs/configuration.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index f799d15..e3d85d8 100644 --- a/docs/configuration.md +++ b/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"', ... ); -``` \ No newline at end of file +```