Hello all,
I’d like to be able to share web archives stored in a public S3 Bucket via https://replayweb.page/ but I’m having difficulty configuring the permissions in the Console.
Specifically, I’m struggling to define the rules in the Bucket Policy and Cross-origin resource sharing (CORS) entry fields.
I’ve input the following: 1. Bucket Policy
{
“Version”: “2012-10-17”,
“Id”: “Policy1612453220504”,
“Statement”: [
{
“Sid”: “AddPerm”,
“Effect”: “Allow”,
“Principal”: {
“AWS”: “*”
},
“Action”: “s3:GetObject”,
“Resource”: “arn:aws:s3:::/.warc”
}
]
}
- Cross-origin resource sharing (CORS)
[
{
“AllowedHeaders”: [],
“AllowedMethods”: [
“GET”,
“PUT”,
“POST”,
“DELETE”
],
“AllowedOrigins”: [
“https://replayweb.page”
],
“ExposeHeaders”: []
}
]
Alas, no luck yet. Wonder if anyone can help/offer any guidance?
Thank you! Anisa