Your cart is currently empty!
S3: Set CORS
Create an XML file:
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> <CORSRule> <AllowedMethod>GET</AllowedMethod> <AllowedMethod>PUT</AllowedMethod> <AllowedMethod>DELETE</AllowedMethod> <AllowedMethod>POST</AllowedMethod> <AllowedOrigin>*</AllowedOrigin> <AllowedHeader>*</AllowedHeader> </CORSRule> </CORSConfiguration>
Then apply it with:
s3cmd setcors cors.xml s3://<bucket-name>
You can check the CORS with:
s3cmd info s3://<bucket-name>
...
CORS: <CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><CORSRule><AllowedMethod>GET</AllowedMethod><AllowedMethod>PUT</AllowedMethod><AllowedMethod>DELETE</AllowedMethod><AllowedMethod>POST</AllowedMethod><AllowedOrigin>*</AllowedOrigin><AllowedHeader>*</AllowedHeader></CORSRule></CORSConfiguration>
...
To remove CORS:
s3cmd delcors s3://<bucket-name>
References: