laravel-uppy-s3-multipart-upload icon indicating copy to clipboard operation
laravel-uppy-s3-multipart-upload copied to clipboard

Other s3 Providers?

Open alexhackney opened this issue 3 years ago • 1 comments
trafficstars

I tried to get this to work with DigitalOcean and I can't seem to. It continues to post to s3 even when I update the aws_url to something else. Is it possible to make this work?

alexhackney avatar May 24 '22 03:05 alexhackney

Hi @alexhackney,

I had the same request as you, but I ended up just making some changes to the source files (will probably fork the package eventually, or submit a PR to make it slightly more configurable):

In UppyS3MultipartController.php: change the storage disk to your disk name and the bucket:

public function __construct()
    {
        $this->client = Storage::disk('testdisk')->getClient();

        $this->bucket = config('filesystems.disks.testdisk.bucket');
    }

Reached avatar May 27 '22 17:05 Reached