use aws-sdk-php to store files on s3 bucket in ESPO CRM
Collapse
X
-
-
Hi,
The lib is very bloated. We didn't want to use it. The app initialization would take longer. Maybe there's a way to achieve what you need with the League's library?
How the credentials are supposed to be stored if not in a file?If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks. -
How authentication in AsyncAws works: https://async-aws.com/authentication...tication-worksIf you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.Comment
-
In the above documentation o found it uses IAM Role . the same i want to implement in this, so is there possibility to use IAM Role??
i found the below document to use. It says no need to configure anything on application.
Last edited by abhilash.kumar.niit; Yesterday, 08:49 AM.Comment
-
-
-
Sure, It is quite easy as the document states that we do not need any additional configuration to implement that. We just need to put the below details in config-internal.php.
'awsS3Storage'=>[
'bucketName'=>'espocrm',
'region'=>'your region',
'path'=>'uploads'
]
and the below line in config.php
'defaultFileStorage' => 'AwsS3',
That's it👍 2Comment
Comment