apps/ente/config/bucket-cors-policy.json
Peter Kurfer 10a2941b36
All checks were successful
Renovate / renovate (push) Successful in 1m28s
fix(ente): properly implement CORS policy
2024-11-22 21:59:13 +01:00

16 lines
313 B
JSON

{
"CORSRules": [
{
"AllowedOrigins": ["*"],
"AllowedMethods": ["GET", "PUT", "POST"],
"AllowedHeaders": ["*"],
"ExposeHeaders": [
"x-amz-server-side-encryption",
"x-amz-request-id",
"x-amz-id-2",
"ETag"
],
"MaxAgeSeconds": 600
}
]
}