Skip to content

버킷 CORS 설정하기

Eunseop Lim edited this page Aug 7, 2022 · 1 revision

1. 아래와 같은 JSON 을 만든다.

{
  "CORSRules": [
    {
      "AllowedOrigins": ["*"],
      "AllowedHeaders": ["*"],
      "AllowedMethods": ["PUT", "GET", "DELETE"],
      "MaxAgeSeconds": 3000
    }
  ]
}

2. (1)에서 만든 cors 설정파일을 버킷에 적용한다. 그래야 SDK를 사용하여 첨부파일을 업로드 할 수가 있다.

aws s3api put-bucket-cors --bucket bside-front-qa --cors-configuration file://cors.json --endpoint-url https://kr.object.ncloudstorage.com