diff --git a/configuration/storage.html b/configuration/storage.html
index d9d570f..ffcc40c 100644
--- a/configuration/storage.html
+++ b/configuration/storage.html
@@ -126,7 +126,7 @@
Different storage adapters are provided through the awesome Flysystem library. You can use local filesystem (default), FTP, S3, Dropbox and many others. You can use local filesystem (default), FTP, Amazon S3, DigitalOcean Spaces, Dropbox and many others. Please check the Flysystem docs for the exact setup required for each adapter. With default adapter you just need to configure where your You must require additional library The DigitalOcean Spaces API are compatible with those of S3. See official documentationAdapters
Default Local Disk Adapter
repository
folder is. This folder will serve as a root for everything else.DigitalOcean Spaces
+composer require league/flysystem-aws-s3-v3
'Filegator\Services\Storage\Filesystem' => [
+ 'handler' => '\Filegator\Services\Storage\Filesystem',
+ 'config' => [
+ 'separator' => '/',
+ 'config' => [],
+ 'adapter' => function () {
+ $client = new \Aws\S3\S3Client([
+ 'credentials' => [
+ 'key' => '123456',
+ 'secret' => 'secret123456',
+ ],
+ 'region' => 'us-east-1',
+ 'version' => 'latest',
+ 'endpoint' => 'https://nyc3.digitaloceanspaces.com',
+ ]);
+
+ return new \League\Flysystem\AwsS3v3\AwsS3Adapter($client, 'my-bucket-name');
+ },
+ ],
+ ],
+
File upload supports drag&drop, progress bar, pause and resume. Upload is chunked so you should be able to upload large files regardless of your server's configuration.