如何在 heroku 中为我的 Saas 应用程序提供自定义域?
我想在 heroku 中为我的客户提供自定义域。
拥有我的域 www.xpto.com 和我的用户域 user1.xpto.com、user2.xpto.com,我想让他们能够添加指向我的应用程序的 CNAME 记录。指向 user1.xpto.com 的自定义域 www.user1xpto.com。
我如何使用 Heroku 实现这一目标?
谢谢,
I want to offer custom domains for my clients in heroku.
Having my domain, www.xpto.com, and my users domains, user1.xpto.com, user2.xpto.com, I want to give them the possibility to add a CNAME record pointing to my app. A custom domain www.user1xpto.com pointing to user1.xpto.com.
How can I achieve this with Heroku?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您将自定义域插件之一添加到您的应用中,您应该能够使用 Heroku gem 来做到这一点。
设置 /custom_domains/activate 操作,从请求中查找域并将其设置为活动状态。
If you add one of the custom domain add-ons to your app, you should be able to do this using the Heroku gem.
Setup an action to /custom_domains/activate that looks up the domain from the request and sets it to active.
通过使用 Heroku REST API 在用户配置要使用的域时添加域。
You can do this pretty well without using the Heroku gem, by using the Heroku REST API to add domains as your users configure them to use.
Heroku API 支持自定义域名。请参阅:https://devcenter.heroku.com/articles/custom-domains
The Heroku API supports custom domain names. See: https://devcenter.heroku.com/articles/custom-domains
您可以使用通配符域插件拥有通配符自定义域,但如果您希望用户能够使用自己的域,则必须在应用程序内使用 heroku gem 将域添加到应用程序自定义域中。
You can have wildcard custom domains with the wildcard domains addon but if you want the user to be able to use their own domain you will have to use the heroku gem inside your app to add the domain to your applications custom domains.