본문 바로가기

AWS3

Lambda Function URLs https://aws.amazon.com/ko/blogs/korea/announcing-aws-lambda-function-urls-built-in-https-endpoints-for-single-function-microservices/ AWS Lambda Function URL 발표 – 단일 기능 마이크로서비스용 내장 HTTPS 엔드포인트 | Amazon Web Services AWS Lambda를 사용하여 탄력적이고 확장 가능한 애플리케이션을 구축하기 위해 마이크로서비스 아키텍처를 채택하고 있습니다. 이러한 애플리케이션은 비즈니스 로직을 구현하는 다수의 서버리 aws.amazon.com 2022년 4월 6일 (한국 4월 7일) Lambda Function URLs 의 일반 제공에 대해 알려드립니다... 2022. 4. 17.
Amplify 폰트 적용 안되는 경우 - failed to decode downloaded font: <url> 폰트를 다운받아 프로젝트 안에 넣고, 아래와 같이 설정해줬습니다. 로컬에서 돌렸을 때는 폰트가 잘 적용되었는데 배포를 하고 나니까 적용이 안되어 있더라고요??! @font-face { font-family: "Pretendard"; src: url("../font/Pretendard-Regular.woff2") format("woff2"), url("../font/Pretendard-Regular.woff") format("woff"), url("../font/Pretendard-Regular.ttf") format("truetype"); font-weight: 400; font-style: normal; } @font-face { font-family: "Pretendard"; src: url("../.. 2022. 2. 3.
Docker 이용해서 Let's Encrypt 인증서 발급 받기 (https 설정) 도메인 주소 발급 먼저 ssl 인증서를 발급 받기 위해선 도메인 주소를 얻어야 합니다. 무료로는 freenom (https://www.freenom.com/) 을 추천드리고, 유료는 AWS Route 53을 추천드립니다. (왜냐면 제가 두 곳만 써봤습니당.하하) Let's Encrypt 인증서 발급 도메인 주소를 받았으면 배포한 서버에 접속해서 아래와 같이 입력합니다. 도메인 주소라고 적힌 부분에는 본인의 도메인 주소를 넣어주면 됩니다. ex) ziho.com docker run -it --rm --name certbot \ -v '/etc/letsencrypt:/etc/letsencrypt' \ -v '/var/lib/letsencrypt:/var/lib/letsencryp.. 2021. 9. 9.