Closed
Description
I was getting incorrect urls for my files stored in S3. I'm using parse-server 2.0.8
I had to modify the following line in S3Adapter.js
From: return 'https://' + this.bucket + '._s3Client.amazonaws.com' + '/' + this._bucketPrefix + filename;
To: return 'https://' + this._bucket + '.s3.amazonaws.com' + '/' + this._bucketPrefix + filename;