반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 스프링 공부
- nestjs스터디
- 기술면접공부
- nestjs
- 스프링
- 플러터 개발
- JPA스터디
- 스프링부트
- 코테공부
- JPA예제
- querydsl
- Flutter
- JPA
- JPA공부
- Kafka
- 자료구조공부
- 알고리즘공부
- 자바공부
- K8S
- 카프카
- 플러터 공부
- 프로그래머스
- 기술공부
- 스프링부트공부
- DDD
- 코테준비
- 스프링공부
- nestjs공부
- JPA 공부
- Axon framework
Archives
- Today
- Total
DevBoi
[Aws] Https 인증서 세팅하기 본문
반응형
알람을 보내야하는 기능이 있는데, http로는 사용자 요청을 얻을 수 없다.
따라서, Https 세팅한다.
1. certbot 설치
sudo snap install certbot --classic
2. 인증서 발급
sudo certbot --nginx -d {도메인}
발급이 끝나면 아래와 같은 문구로 인증서 위치를 알려준다.
Certificate is saved at: /etc/letsencrypt/live/rabbithole.gotdns.ch/fullchain.pem
Key is saved at: /etc/letsencrypt/live/rabbithole.gotdns.ch/privkey.pem
This certificate expires on 2024-07-04.
These files will be updated when the certificate renews.
Certbot has set up a scheduled task to automatically renew this certificate in the background.
Deploying certificate
Successfully deployed certificate for rabbithole.gotdns.ch to /etc/nginx/sites-enabled/default
Congratulations! You have successfully enabled HTTPS on https://rabbithole.gotdns.ch
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
If you like Certbot, please consider supporting our work by:
* Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate
* Donating to EFF: https://eff.org/donate-le
3. nginx 설정, 위 경로의 default 파일을 아래와 같이 수정해준다.
/etc/nginx/sites-available
server {
listen 80 default_server;
listen [::]:80 default_server;
# SSL configuration
ssl_certificate /etc/letsencrypt/live/rabbithole.gotdns.ch/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/rabbithole.gotdns.ch/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
root /home/ubuntu/smith/web;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
try_files $uri $uri/ /index.html;
proxy_hide_header Access-Control-Allow-Origin;
add_header 'Access-Control-Allow-Origin' '*';
}
29,75 Top
이렇게 설정한뒤 , nginx를 재부팅하게 되면 https로 접속이 가능함을 확인할 수 있다.
반응형
'Infra > [AWS]' 카테고리의 다른 글
[AWS] Nginx + LetsEncrypt(https) + NestJs + Flutter web (0) | 2024.05.15 |
---|---|
[Flutter + Socket] Flutter + NestJs + Socket 서비스 개발하기 (0) | 2024.04.24 |
[AWS] RDS too many Connection 오류 (0) | 2024.02.03 |
[AWS] EC2 메모리 이슈분석 및 Swap memory 설정 (0) | 2024.01.25 |
[AWS] EC2 장애 반복 (0) | 2024.01.06 |