[RaspberryPi] 보안서버(SSL) 인증서 설치
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 을 사용한다.