Gatsby + S3 + cloudfront
2022. 12. 7. 15:32ㆍ기타
728x90
SMALL
- 개요
Gatsby는 react 기반 프레임워크로 SPA로 구성할 때 자주 쓰인다.
- SPA on S3
S3 uncheck Block public access
S3 Static website hosting enable
cloudfront origin s3 website hosting url
>>> <bucket-name>.s3-website.ap-northeast-2.amazonaws.com
- s3 bucket policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "1",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::<bucket-name>/*"
}
]
}
- reference
https://www.gatsbyjs.com/docs/how-to/previews-deploys-hosting/deploying-to-s3-cloudfront/
728x90
LIST
'기타' 카테고리의 다른 글
mac에서 날짜 계산하기 (gdate) (0) | 2024.04.04 |
---|---|
CSAP (Cloud Security Assurance Program) (0) | 2024.03.25 |
NAT 환경에서 공인 아이피 확인 하는 방법 (0) | 2024.01.16 |