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

gefragt vor 2 Jahren655 Aufrufe
2 Antworten
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
beantwortet vor 2 Jahren
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
beantwortet vor 9 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen