Configure cross-origin resource sharing (CORS)
You can configure cross-origin resource sharing (CORS) for an S3 bucket if you want that bucket and objects in that bucket to be accessible to web applications in other domains.
-
You are signed in to the Tenant Manager using a supported web browser.
-
You belong to a user group that has the Manage all buckets or Root access permission. These permissions override the permissions settings in group or bucket policies.
Cross-origin resource sharing (CORS) is a security mechanism that allows client web applications in one domain to access resources in a different domain. For example, suppose you use an S3 bucket named Images
to store graphics. By configuring CORS for the Images
bucket, you can allow the images in that bucket to be displayed on the website http://www.example.com
.
Enable CORS for a bucket
-
Use a text editor to create the required XML.
This example shows the XML used to enable CORS for an S3 bucket. This XML allows any domain to send GET requests to the bucket, but it only allows the
http://www.example.com
domain to send POST and DELETE requests. All request headers are allowed.<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2020-10-22/"> <CORSRule> <AllowedOrigin>*</AllowedOrigin> <AllowedMethod>GET</AllowedMethod> <AllowedHeader>*</AllowedHeader> </CORSRule> <CORSRule> <AllowedOrigin>http://www.example.com</AllowedOrigin> <AllowedMethod>GET</AllowedMethod> <AllowedMethod>POST</AllowedMethod> <AllowedMethod>DELETE</AllowedMethod> <AllowedHeader>*</AllowedHeader> </CORSRule> </CORSConfiguration>
For more information about the CORS configuration XML, see Amazon Web Services (AWS) Documentation: Amazon Simple Storage Service Developer Guide.
-
Select View buckets from the dashboard, or select STORAGE (S3) > Buckets.
-
Select the bucket name from the table.
The bucket details page appears.
-
From the Bucket access tab, select the Cross-Origin Resource Sharing (CORS) accordion.
-
Select the Enable CORS checkbox.
-
Paste the CORS configuration XML into the text box.
-
Select Save changes.
Modify CORS setting
-
Update the CORS configuration XML in the text box, or select Clear to start over.
-
Select Save changes.
Disable CORS setting
-
Clear the Enable CORS checkbox.
-
Select Save changes.