반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 초보
- json pretty
- c#
- JWT 토큰 인증 로그인 쿠키 설정
- 개발
- pnpm
- 개발언어
- 곧아빠됨
- ChatGPT
- 마이너스의 의미
- TS70016
- JWT 토큰
- 스케쳐스아치핏
- 웹퍼블리셔전망
- nodejs
- 메일수신거부 프로세스
- 터미널옵션
- locofy.ai
- asp.net core
- 게시판
- 패키지관리자
- 웹퍼블리셔종말
- 메일수신거부처리
- 아들에게
- 하마모양
- ts7016
- .netcore
- typesinstall
- classNames
- @types
Archives
- Today
- Total
I am maker
ubuntu17.10 certbot https 인증에서 사이트 하나 제거하기 본문
반응형
1. 인증서 만료시키기 리눅스에서 아래 명령어를 칩니다.
certbot revoke --cert-path /etc/letsencrypt/archive/${YOUR_DOMAIN}/cert1.pem
2. 인증서 만료 체크
https://certificate.revocationcheck.com/
rm -rf /etc/letsencrypt/archive/${YOUR_DOMAIN}/
rm -rf /etc/letsencrypt/live/${YOUR_DOMAIN}/
rm -rf /etc/letsencrypt/renewal/${YOUR_DOMAIN}.conf
3. /etc/nginx/sites-available/default 파일에서 아래 내용 제거 후 저장
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/${YOUR_DOMAIN}/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/${YOUR_DOMAIN}/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
4. certbot 새로고침
sudo certbot renew
5. nginx 리로드
service nginx reload
반응형
'문제해결(Trouble shootings)' 카테고리의 다른 글
react type script function execute by name (0) | 2020.02.12 |
---|---|
ubuntu 17.10 무료 ssl https certbot letsencrypt 설정 (0) | 2018.05.12 |
MSSql 스토어드 프로시져 사용시에만 Timeout에러. 잘못된게 없는데 에러나는 저장함수 호출 (0) | 2017.05.15 |
어떤 IIS 웹사이트(w3wp.exe)가 어떤 로그인지 확인하는 방법? (0) | 2017.05.08 |
SignalR url이 localhost 말고는 안될때 (0) | 2017.04.26 |