SSL 구매 후 1시간 이내에 Heroku에 적용하는 방법
사용할 SSL 인증서
서버
절차
openssl dgst -md5 /var/log/system.log > rand.dat
openssl genrsa -rand rand.dat -des3 2048 > rapidssl.pem
openssl req -new -key rapidssl.pem -out rapidssl-csr.pem
A challenge password []:
와 An optional company name []:
빈 ok Common Name (e.g. server FQDN or YOUR name) []:
-----
Country Name (2 letter code) [AU]:JP
State or Province Name (full name) [Some-State]:
Locality Name (eg, city) []:
Organization Name (eg, company) [Internet Widgits Pty Ltd]:
Organizational Unit Name (eg, section) []:
Common Name (e.g. server FQDN or YOUR name) []:
Email Address []:
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:
サーバー証明書DL
라는 버튼으로 바뀌므로 버튼을 누릅니다.server.crt
다운로드 cp -rp server.crt cert.pem
-----BEGIN CERTIFICATE-----
에서 -----END CERTIFICATE-----
까지 복사cert.pem
サーバー証明書
中間証明書
openssl rsa -in rapidssl.pem -out cert.key
heroku certs:update cert.pem cert.key --app [app name]
Reference
이 문제에 관하여(SSL 구매 후 1시간 이내에 Heroku에 적용하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/rneuo/items/3723b69209ebd2ac3a24텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)