Documents
Integration with S3 (AWS)
For Hybrid Fetch to work with the storage service S3 from AWS, the following settings are the ones required:
- In your AWS administration console go to S3
- Go to the bucket where you want to apply the changes
- Go to permissions
- In permissions go to CORS configuration
- Add the following XML configuration:
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>
- Save the changes