본문으로 바로가기

1. apt update

sudo apt update -y

2. letsencrypt 설치

 sudo apt install letsencrypt

3. 실행중인 web 중지

 * 인증서 발급 시 80 포트를 사용한다고 한다.

 # 프로세스 확인
 netstat -ntlp | grep 80

 

4. ssl 인증서 발급

sudo letsencrypt certonly --standalone -d 도메인주소

# 인증서 설치 확인
sudo tree /etc/letsencrypt

 

5. 각 웹서버에 설정 파일에 설정

 

6. 참고사항

- Apache2 서버에서는 cert.pem, chain.pem, privkey.pem 을,
- Nginx 서버에서는 fullchain.pem, privkey.pem 을 사용한다.

 

'취미생활 > raspberryPi' 카테고리의 다른 글

[RaspberryPi] Duckdns 설치  (0) 2020.01.05
[RaspberryPi] 초기셋팅  (0) 2020.01.05
[RaspberryPi] HDD 포맷 & Mount  (0) 2019.10.05
[RaspberryPi] vsftpd 설치  (0) 2019.10.05
[RaspberryPi] 시작  (0) 2019.10.05