我可以使用“自定义域”在 Heroku 上混合顶级域和子域应用程序吗?添加在?
根据heroku,http://addons.heroku.com/custom_domains “通配符域附加组件使您能够使用 *.yourdomain.com。您可以在一个应用程序上拥有任意数量的通配符域。”
假设我有一个名为 abc.com 的域名 我可以使用 abc.com 作为第一个 Rails 应用程序,使用 another.abc.com 作为第二个 Rails 应用程序,使用 another2.abc.com 作为第三个 Rails 应用程序吗?这 3 个 Rails 是单独/不同的 Heroku Rails 应用程序吗?我想知道,因为 heroku 说“在一个应用程序上可以有任意数量的通配符域”。
According to heroku, http://addons.heroku.com/custom_domains
"The wildcard domain add-on enables you to use *.yourdomain.com. You can have as many wildcard domains as you like on one app."
Let say i have a domain call abc.com
can i use abc.com for 1st rails app, another.abc.com for 2nd rails app, another2.abc.com for 3nd rails app? this 3 rails is separate/different heroku rails app? i would like to know cause heroku say "as many wildcard domains as you like on one app."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这应该是可能的。您可以将您的应用程序基本上压缩为 1 个(如果有必要的话),并按照此处的指南进行操作
http://www.railsdev.ws/blog/10/using-subdomains-in-rails-apps/
了解如何基于子域进行路由。
Yes, this should be possible. You can condense your apps basically into 1 (if even necessary), and follow the guide here
http://www.railsdev.ws/blog/10/using-subdomains-in-rails-apps/
to learn how to route based on subdomains.
如果您在 Heroku 上有 3 个独立的应用程序,如您所描述的,那么您只需要每个应用程序一个自定义域(即不是通配符插件)。如果您使用通配符域插件添加 *.mydomain.com,那么您将无法对 Heroku 上托管的任何后续应用程序使用相同的域 (mydomain.com)。
If you have 3 separate applications on Heroku as you describe then you just need a single custom domain per application (ie not the wildcard addon). If you use the wildcard domain addon to add say *.mydomain.com then you will not be able to use the same domain (mydomain.com) for any subsequent applications you host on Heroku.