Amplify AccessDenied with PDF file in root folder

0

I'm trying to host a PDF file in the root folder of an otherwise empty Amplify app. I'm deploying the app through GitHub. For some reason I'm getting an AccessDenied error when reaching the PDF file like so: https://www.example.com/myfile.pdf

Everything was setup using the default configuration. index.html in the root folder works just fine. Leaving the PDF is a subfolder also works fine.

What could be wrong? Thanks

已提問 2 年前檢視次數 655 次
2 個答案
0

Good question! I would check your Amplify build settings to see how you have set up your artifacts and the structure for that: https://docs.aws.amazon.com/amplify/latest/userguide/build-settings.html

The “Access Denied” error tells me that the folder is not initialized correctly.

jsonc
已回答 2 年前
0

Check S3 Bucket Permissions: You can ensure that the S3 bucket associated with your Amplify project has the appropriate permissions to allow public access or authenticated access to the PDF file.

  • Navigate to the Amazon S3 console.
  • Select your bucket.
  • Go to the "Permissions" tab.
  • Review the bucket policy and ensure it allows the necessary access. You might need to add a policy that allows GetObject permissions for public or authenticated users.

Here's an example of an S3 bucket policy allowing public read access:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Principal": "*",
      "Action": "s3:GetObject",
      "Resource": "arn:aws:s3:::your-bucket-name/*"
    }
  ]
}
AWS
已回答 9 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南