Hey guys!
I’m trying to enable Amazon S3 for image uploads since my server is getting pretty full and SSD storage is expensive!
I’m getting this error when I try to upload on my Amazon S3 bucket:
Here’s my config:
Here’s my bucket public access config:
I’ve followed this guide:
Here’s my policy json:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:List*",
"s3:Get*",
"s3:AbortMultipartUpload",
"s3:DeleteObject",
"s3:PutObject",
"s3:PutObjectAcl",
"s3:PutObjectVersionAcl",
"s3:PutLifecycleConfiguration",
"s3:CreateBucket",
"s3:PutBucketCORS"
],
"Resource": [
"arn:aws:s3:::forumlatrancheecom",
"arn:aws:s3:::forumlatrancheecom/*"
]
},
{
"Effect": "Allow",
"Action": [
"s3:ListAllMyBuckets",
"s3:ListBucket"
],
"Resource": "*"
}
]
}
My backups are working so the configuration is “somewhat” working. Not sure where to look in order to debug. Any help would be greatly appreciated!
I’m running discourse 2.9.0.beta10 hosted on Digital Ocean Ubuntu 16.04 if that helps…