Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 340 Bytes

s3.md

File metadata and controls

16 lines (13 loc) · 340 Bytes

S3 storage

Bucket configuration

In order to read video (loaded via XmlHttpRequest), you must enable CORS:

Example for AWS:

<CORSConfiguration>
<CORSRule>
    <AllowedOrigin>https://*.mydomain.com</AllowedOrigin>
    <AllowedMethod>GET</AllowedMethod>
    <AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>