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

preguntada hace 2 años655 visualizaciones
2 Respuestas
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
respondido hace 2 años
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
respondido hace 9 meses

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas