Hi,
I'm having issues with setting up an external file storage.
I follow this post :
When I try to upload a file, I get error 500.
So I wonder if I really can add S3 non-AWS by this way or is it only available for Amazon services?
In the case it should works with Vult, this is what I tried:
config-internal.php :
into config.php:
As you can see, this is the Bucket : erp-espocrm with the folder test
And there this is the Key/Secret information :
I'm having issues with setting up an external file storage.
I follow this post :
When I try to upload a file, I get error 500.
So I wonder if I really can add S3 non-AWS by this way or is it only available for Amazon services?
In the case it should works with Vult, this is what I tried:
config-internal.php :
Code:
'awsS3Storage' => [ 'bucketName' => 'erp-espocrm', 'path' => 'test', 'credentials' => [ 'key' => 'xxxxxxxxxx', 'secret' => 'xxxxxxxx', ], 'region' => 'ams1', 'endpoint' => 'ams1.vultrobjects.com', ],
Code:
'defaultFileStorage' => 'AwsS3', 'thumbImageCacheDisabled' => true,
And there this is the Key/Secret information :
Comment