Hi all,
I am in the process of adding a aws s3 storage adapter to my ghost config in ubuntu. Unfortunately, I get a ‘Internal server error, cannot upload image’ error after restarting ghost with the new configuration.
I have followed this guide on Ghost storage adapter S3 and I also read the support page on the signature version for london-based (eu-west-2) buckets which I didn’t really understand.
This is my current configuration:
"storage": {
"active": "s3",
"s3": {
"accessKeyId": "My_accessKeyId",
"secretAccessKey": "My_secretAccessKey",
"region": "eu-west-2",
"bucket": "arn:aws:s3:::my-bucket-name",
"forcePathStyle": true,
"signatureVersion": "v4"
}
},
Is this an error related to the signature version? how do I solve it? Thanks in advance!