본문 바로가기

certbot-auto certonly

C276x260.fwebp.q85 [draft] Let's Encrypt(certbot) SSL 인증서를 발급하는 방법 Let's Encrypt(certbot) SSL 인증서를 발급하는 방법Let's Encrypt는 무료로 SSL/TLS 인증서를 발급하는 공개 기관으로, Certbot라는 도구를 통해 간단하게 SSL 인증서를 발급할 수 있습니다.PluginAuthInstNotesChallenge types(and port)apacheYYApache를 사용하여 인증서 획득 및 설치를 자동화합니다.http-01(80)nginxYYNginx로 인증서 획득 및 설치를 자동화합니다.http-01 (80)webrootYN이미 실행 중인 웹 서버의 webroot 디렉토리에 기록하여 인증서를 얻습니다.http-01(80)standaloneYN"standalone" 웹 서버를 사용하여 인증서를 얻습니다. 포트 80을 사용할 수 있어야 합.. 더보기
C276x260.fwebp.q85 [draft] Let's Encrypt(Certbot)로 무료 SSL 인증서 발급하는 방법 Let's Encrypt(Certbot)로 무료 SSL 인증서 발급하는 방법1. Standalone 모드(웹 서버가 없는 경우)웹 서버 없이 Certbot이 자체적으로 임시 웹 서버를 실행해 인증을 처리하는 방식입니다. 특징기존 웹 서버가 없을 때 사용포트 80(HTTP) 또는 443(HTTPS) 가 열려 있어야 함임시 서버 구동 → 인증 → 자동 종료사전 준비방화벽에서 80/443 포트 오픈도메인이 서버 IP로 연결되어 있어야 함(A 레코드 설정)명령어 예시certbot certonly --standalone -d [도메인명1] -d [도메인명2]certbot certonly --standalone -d example.com -d www.example.comCertbot은 자체 HTTP 서버를 실행하여.. 더보기