如何在 heroku 中为我的 Saas 应用程序提供自定义域?

发布于 2024-10-17 03:38:20 字数 207 浏览 2 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

抱猫软卧 2024-10-24 03:38:20

如果您将自定义域插件之一添加到您的应用中,您应该能够使用 Heroku gem 来做到这一点。

class CustomDomain < ActiveRecord::Base
    belongs_to :user
    after_create :setup_at_heroku
    def setup_at_heroku
       # make calls with heroku gem here
       test_cname_later
    end
    def test_cname_later
      # use background job here to try to call custom.com/custom_domains/activate
    end
end

设置 /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.

class CustomDomain < ActiveRecord::Base
    belongs_to :user
    after_create :setup_at_heroku
    def setup_at_heroku
       # make calls with heroku gem here
       test_cname_later
    end
    def test_cname_later
      # use background job here to try to call custom.com/custom_domains/activate
    end
end

Setup an action to /custom_domains/activate that looks up the domain from the request and sets it to active.

征棹 2024-10-24 03:38:20

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.

静若繁花 2024-10-24 03:38:20

Heroku API 支持自定义域名。请参阅:https://devcenter.heroku.com/articles/custom-domains

The Heroku API supports custom domain names. See: https://devcenter.heroku.com/articles/custom-domains

水水月牙 2024-10-24 03:38:20

您可以使用通配符域插件拥有通配符自定义域,但如果您希望用户能够使用自己的域,则必须在应用程序内使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文