Last active
March 18, 2020 01:39
-
-
Save drsasimi/8b8a054c42861d6f1114db6ebf97eb7d to your computer and use it in GitHub Desktop.
Let's Encrypt 인증서 발급 및 Tomcat 인증서 변환
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 일반 인증서 발급 시 (.ache-challenge 검증) | |
| $ ./certbot-auto certonly --manual | |
| # 와일드카드 인증서 발급 시 (DNS TXT 검증) | |
| $ ./certbot-auto certonly --manual --preferred-challenges dns --server https://acme-v02.api.letsencrypt.org/directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ openssl pkcs12 -export -in fullchain.pem \ | |
| -inkey privkey.pem \ | |
| -out keystore.p12 | |
| -name tomcat \ | |
| -CAfile chain.pem \ | |
| -caname root |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment