일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 우한 코로나
- 정은경 본부장님
- 미중
- everybody wants you
- Bolton
- 우한
- 우한코로나
- 진짜영웅
- 전염병
- 필리핀사망
- 봉준호감독통역사
- 코로나
- 확진자수
- wuhan
- 창궐
- red hearse
- 어서와한국은처음이지
- 중국외교부
- 조현병
- cnn
- 코로나바이러스
- 봉준호감독통역
- 최성재
- 웨일즈
- 치앙마이
- 코로나19
- 우한코로나바이러스
- parasite
- sharonchoi
- 신종코로나
- Today
- Total
오지's blog
Ubuntu, Apache위에 letencrypt 설치 본문
https://medium.com/@hbayraktar/how-to-setup-lets-encrypt-ssl-for-apache-on-ubuntu-18-04-cfa97a83bc08
2-Add Certbot PPA and Install Certbot
You’ll need to add the Certbot PPA to your list of repositories.
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:certbot/certbot
sudo apt-get update
sudo apt-get install python-certbot-apache
3-Install Let’s Encrypt Client
Use the following command to do it.
sudo wget https://dl.eff.org/certbot-auto -O /usr/sbin/certbot-auto
sudo chmod a+x /usr/sbin/certbot-auto
4 — Get a SSL Certificate
sudo certbot-auto --apache -d redhillinteractive.com -d www.redhillinteractive.com
5 — Configure SSL Auto-Renew
You can test automatic renewal for your certificates by running this command:
sudo certbot renew --dry-run
5 — Check your website’s
To confirm that your site is set up properly, visit https://yourwebsite.com/ in your browser and look for the lock icon in the URL bar.
'개발노트 > 서버 관리' 카테고리의 다른 글
cPanel에서 ssh 접속 방법 (0) | 2021.04.18 |
---|---|
flask, wsgi, nginx 설정 방법 참고 페이지 (0) | 2021.04.01 |
git의 개념과 실습 (0) | 2021.02.03 |
github 기본 명령어 및 커밋해도 컨트리뷰션에 색이 변경되지 않는 경우 (0) | 2021.02.02 |
맥에서 aws로 ssh, scp(양방향) 방법 (0) | 2020.07.24 |