Multiple SSL Certificates in One Heroku Application

前端 未结 5 1628
南笙
南笙 2020-12-07 14:02

Is it possible to have many SSL certificates in the single Heroku Application ?

We have multiple domain names of different types and TLD\'s pointing to our applicati

5条回答
  •  轮回少年
    2020-12-07 14:27

    Recently heroku has added automatic LetsEncrypt TLS certificates for paid dynos, hobby and up. This will work across any number of domains and subdomains automatically. This method only works if you don't need wildcard subdomains.

    Additionally you can manage the LE certification yourself across multiple domains and subdomains, with certbot

    certbot certonly --standalone -d example.com -d www.example.com -d test.net

    You can refer to this heroku doc for uploading custom certificates.

提交回复
热议问题