目前我正将我的应用程序从AWS移至Heroku。
添加通配符时,我遇到了问题Apps using ACM are not allowed to have wildcard domains
。你能告诉我如何添加通配符吗?我的应用程序处于移动阶段,我的Dynos是免费的。此外,我想用于免费试用Dynos,因为现在对我来说已经足够了。
例
我的域名:bar.com
我想这样:[foo] .bar.com而不是foo
可以是任何名字
答案 0 :(得分:1)
您可以生成一个免费的“让我们加密通配符证书”,并将其上传到Heroku。您可以按照以下步骤进行操作: http://aawaara.com/post/175058359322/generate-a-free-lets-encrypt-wildcard-ssl
curl https://get.acme.sh | sh
# Open a new terminal window after executing above command
# Create a cloudflare account (and assuming that you will use it for DNS) and get your API key from the profile section
export CF_Email=my.cloudflare@example.com
export CF_Key=replace_with_cloudflare_api_key
# Generate wildcard certificate for *.example.com
acme.sh --issue -d example.com -d '*.example.com' --dns dns_cf
如果您不使用Cloudflare DNS,则下面列出了其他受支持的DNS提供程序: https://github.com/Neilpang/acme.sh/tree/master/dnsapi#1-use-cloudflare-domain-api-to-automatically-issue-cert