showing results for - "cors amazon s3"
Timeo
10 Oct 2016
1// Place in bucket permissions - CORS
2[
3  {
4    "AllowedHeaders": [
5      "*"
6    ],
7    "AllowedMethods": [
8      "GET",
9      "POST",
10      "PUT",
11      "DELETE",
12    ],
13    "AllowedOrigins": [
14      "*"
15    ],
16    "ExposeHeaders": []
17  }
18]