cerbot
-
Cerbot을 통한 SSL 발급받아 Spring boot에 적용하기Computer Science/Spring boot 2022. 7. 27. 03:05
https://certbot.eff.org/instructions?ws=other&os=arch SSL 인증서 받기 sudo certbot certonly --standalone 를 통해 SSL 인증서를 발급받는다. Successfully received certificate. Certificate is saved at: /etc/letsencrypt/live/subbak2.com/fullchain.pem Key is saved at: /etc/letsencrypt/live/subbak2.com/privkey.pem 2가지 pem키를 얻을 수 있다. 인증서 tomcat용으로 변경 SSL 인증서를 spring boot 에서 필요한 형식 즉 tomcat이 사용하는 형식으로 변경한다.(PKCS12) opens..