호스트 OS에서 certbot 실행1. certbot 설치 (Ubuntu 기준)sudo apt updatesudo apt install certbot python3-certbot-nginx2. Nginx 일시 중지 (도커 컨테이너 멈춤)docker-compose stop nginx3. certbot으로 인증서 발급sudo certbot certonly --standalone -d hacktheworldctf.xyz⚠️ 이 명령은 80 포트를 직접 바인딩해서 인증을 수행하기 때문에, Nginx 컨테이너를 멈춰야 해.4. 인증서 확인인증서가 아래에 저장됨:/etc/letsencrypt/live/hacktheworldctf.xyz/필요한 파일:fullchain.pemprivkey.pem5. 복사 또는 마운트이..