当我访问我的Cloudfront URL时,出现以下错误: CloudFront无法连接到源。
S3存储桶具有正确的策略。 Cloudfront应该能够访问它。
我有一个ELB,S3存储桶和一个站点端点作为起源。这是ELB吗?我是否需要做一些特别的事情才能让Cloudfront访问ELB?
以下是S3存储桶的政策:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AddPerm",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::example-static-content/*"
}
]
}