티스토리 뷰
구성 환경
→ Microsoft Azure 가상머신
→ Ubuntu 18.04.5 LTS
→ nginx/1.14.0 (Ubuntu)
- Let's encrypt git 프로젝트 복사
git clone <https://github.com/letsencrypt/letsencrypt>
- let's encrypt 프로젝트로 이동
cd letsencrypt
- let’s encrypt 실행
sudo ./letsencrypt-auto certonly --manual --email [이메일 주소] -d [사용할 도메인주소]
여기까지 정상적으로 진행시
Create a file containing just this data:
해시값
And make it available on your web server at this URL:
<http://도메인/.well-known/acme-challenge/해시값>
위와같은 메시지가 뜨는데, 도메인뒤에 /.well-konown ~ 과 같은 경로에 파일을 넣어줘야한다.
정상 작동시 Congraturation! 과 함께 인증서 파일이 생긴다. 경로는 /etc/letsencrypt/live/도메인/
- Nginx 설정
기본 설정이라면 /etc/nginx/sites-available 에 있는 default 파일 수정
server {
listen 80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name 도메인;
ssl_certificate /etc/letsencrypt/live/도메인fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/도메인/privkey.pem;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
location / {
try_files $uri $uri/ =404;
}
location ~ /\\.well-known/acme-challenge/ {
allow all;
root /var/www/letsencrypt;
}
}
4.5 nginx service restart
- Azure 사이트 → 가상머신 → 가상머신이름 → 설정 → 네트워킹 → 인바운트 포트 규칙 추가 → 443번 포트추가
- crontab을 이용한 자동갱신
LetsEncrypt 무료 SSL인증서 적용 및 자동 갱신하기
출처 :
https://nhj12311.tistory.com/250
'DEV > various knowledge' 카테고리의 다른 글
[rabbitMQ] network partition (0) | 2022.03.20 |
---|---|
[DNS] www.naver.com을 입력하면 어떻게 될까? (0) | 2022.03.09 |
[git] 유용한 커맨드 (0) | 2022.02.22 |
[javascript] var, let ,const (0) | 2022.02.21 |
URL 끝에 '/' 쓰고 안쓰고의 차이 (0) | 2021.12.12 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 방금그곡
- 의대 신경학 강의
- 프로그래머스
- taggit
- 소프트웨어 장인
- conTeXt
- 백준
- query
- stdout
- go
- django
- Python
- gunicorn
- 파이썬
- leetcode
- for-else
- go context
- sql lite
- 문자열 뒤집기
- 독후감
- 팰린드롬수
- dfs
- ManyToMany
- Two Scoops of Django
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함