gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 00:35:13 25 4
gpt4 key购买 nike

我想在 heroku 中为我的客户提供自定义域。

有了我的域 www.xpto.com 和我的用户域 user1.xpto.com、user2.xpto.com,我想让他们能够添加指向我的应用程序的 CNAME 记录。指向 user1.xpto.com 的自定义域 www.user1xpto.com。

如何使用 Heroku 实现这一目标?

谢谢

最佳答案

如果您添加 custom domain 之一如果您的应用程序有附加组件,您应该能够使用 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 操作,从请求中查找域并将其设置为事件状态。

关于ruby-on-rails - 如何在 heroku 中为我的 Saas 应用程序提供自定义域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4986788/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com