Proxmox VE 호스트 무료 SSL 인증서 등록
작성자 정보
- 양부장 작성
- 작성일
컨텐츠 정보
- 1,947 조회
- 1 댓글
- 0 추천
- 목록
본문
git설치하고, acme.sh 스크립트를 다운받고, 명령어를 실행하면 무료 인증서인 ZeroSSL로 설치 된다.
아래는 예시
apt install git
git clone https://github.com/acmesh-official/acme.sh.git acme.sh-master
cd acme.sh-master/
./acme.sh --register-account -m admin@proxmox.co.kr
./acme.sh --issue --standalone --keypath /etc/pve/local/pve-ssl.key --fullchainpath /etc/pve/local/pve-ssl.pem --reloadcmd "systemctl restart pveproxy" -d pve1.proxmox.co.kr
관련자료
댓글 1
양부장님의 댓글
- 양부장
- 작성일
ACME는 기본으로 ZeroSSL을 사용합니다만, 요즘 자꾸 에러가 발생하네요. 그래서,
./acme.sh --issue --standalone --keypath /etc/pve/local/pve-ssl.key --fullchainpath /etc/pve/local/pve-ssl.pem -d pve1.proxmox.co.kr --server letsencrypt --reloadcmd "systemctl restart pveproxy"
이렇게 --server letsencrypt를 추가하여 사용합니다.
./acme.sh --issue --standalone --keypath /etc/pve/local/pve-ssl.key --fullchainpath /etc/pve/local/pve-ssl.pem -d pve1.proxmox.co.kr --server letsencrypt --reloadcmd "systemctl restart pveproxy"
이렇게 --server letsencrypt를 추가하여 사용합니다.