AWS S3 bucket Explorer

%ec%8a%a4%ed%81%ac%eb%a6%b0%ec%83%b7-2016-10-21-%ec%98%a4%ed%9b%84-5-38-15

 

git 저장소 : https://github.com/awslabs/aws-js-s3-explorer

S3 내용을 보기 좋게 변환하여, 리스트 형식으로 보여줄 수 있다. 매우 좋은 기능

백업 용도로 S3많이 이용하는데. 누군가에게 보기좋게 가이드하기 편한 방법인 것 같다.

 

해당 깃 프로젝트로 가면 설정방법이 상세하게 있다.

이중 권한 및 cors 설정을 해주면 된다.

방법은 아래와 같다.

 

퍼미션

{

“Version”: “2012-10-17”,

“Statement”: [

{

“Sid”: “PublicListGet”,

“Effect”: “Allow”,

“Principal”: “*”,

“Action”: [

“s3:List*”,

“s3:Get*”

],

“Resource”: [

“arn:aws:s3:::BUCKET-NAME”,

“arn:aws:s3:::BUCKET-NAME/*”

]

}

]

}

 

 

CORS 설정

<CORSConfiguration xmlns=”http://s3.amazonaws.com/doc/2006-03-01/”>  <CORSRule>    <AllowedOrigin>http://BUCKET-NAME.s3.amazonaws.com</AllowedOrigin>    <AllowedMethod>HEAD</AllowedMethod>    <AllowedMethod>GET</AllowedMethod>    <AllowedHeader>*</AllowedHeader>    <ExposeHeader>ETag</ExposeHeader>    <ExposeHeader>x-amz-meta-custom-header</ExposeHeader>  </CORSRule></CORSConfiguration>

 

글쓴이