how to install a letsencrypt cert on ibm cloud?

[亡魂溺海] 提交于 2019-12-06 15:54:12

If you have the files ready, use the Bluemix CLI and upload them:

bx app domain-cert-add www.example.com -c cert.pem -k privkey.pem -i chain.pem

Then view your certificate:

bx app domain-cert www.example.com

Also, there is a bluemix-letsencrypt Python application that automates the whole process of doing the LetsEncrypt ACME challenge, issuing the certificate and key files (.pem), downloading them, and then uploading to bluemix. All done without taking down your live bluemix app because only /.well-known/acme-challenge/ paths are redirected to the python app, and not all / root calls.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!