낙서장
openssl 로컬 키 만들기
Jaybon
2021. 8. 17. 14:47
localhost ssl https 키 생성
openssl 설치
위 파일을 검색해서 다운로드 하자
cmd에서 cd C:\OpenSSL-Win64\bin 으로 이동한 뒤
openssl req -x509 -out localhost.crt -keyout localhost.key -days 365 -newkey rsa:2048 -nodes -sha256 -subj /CN=localhost
입력하면 localhost.crt 와 localhost.key 가 생성된다
필요프로그램
openssl
openssl req -x509 -out localhost.crt -keyout localhost.key \ -days 365 \ -newkey rsa:2048 -nodes -sha256 \ -subj '/CN=localhost' -extensions EXT -config <( \ printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth")
참고
https://letsencrypt.org/ko/docs/certificates-for-localhost/
https://dev-jelly.netlify.app/posts/Apply%20Https%20on%20next.js%20when%20development