ubuntu 에 pm2 와 ssl 인증서로 https 설정
pm2 설치
https://hellominchan.tistory.com/11
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=pjt3591oo&logNo=221034901679
SSL 인증서 설치 참고
Certbot 설치 -
(아마존 라이트세일 domain 경우 nginx default 파일 server_name 에 www. 을 붙여야 한다. ! )
$ sudo apt-get update
$ sudo apt-get install -y software-properties-common
$ sudo add-apt-repository universe
$ sudo add-apt-repository ppa:certbot/certbot
$ sudo apt-get update
$ sudo apt-get install certbot python-certbot-nginx
# 만약 다음과 같은 에러가 난다면1
E: The repository 'http://ppa.launchpad.net/certbot/certbot/ubuntu focal Release' does not have a Release file.
$ sudo apt-add-repository -r ppa:certbot/certbot
# 만약 다음과 같은 에러가 난다면2
However the following packages replace it:
python3-certbot-nginx
E: Package 'python-certbot-nginx' has no installation candidate
$ sudo apt-get install certbot python3-certbot-nginx
'리눅스&서버 > 우분투' 카테고리의 다른 글
디스크 파티션 사용량 모니터링 스크립트[2] (0) | 2022.03.23 |
---|---|
서버 운영 필요한 지식 - 트러블 슈팅[1] - (텔레그램 봇 메시지 보내기) (0) | 2022.03.23 |
ubuntu에 Nginx 설치 정리 + Node js (1) | 2021.10.19 |
Apache Tomcat 연동&mod_jk 설정 (0) | 2021.02.15 |
mac VirturBox 네트워크 설정(ssh 외부접속) (0) | 2021.02.14 |