Modify S3 bucket CORS configuration
Closed this issue · 2 comments
stan-sack commented
Hey Lars, I am unable to access the S3 bucket from my local frontend dev server. This can be fixed by modifying the CORS configuration of the bucket to:
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>http://*</AllowedOrigin>
<AllowedOrigin>https://*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>
Thanks
laolsson commented
Try now
stan-sack commented
Yep it works!