使用 Rails、Nginx 动态创建虚拟主机?
我真的很喜欢 Basecamp 的“动态”为客户创建自定义虚拟主机的习惯——例如,一旦一家公司注册了,他们可以快速登录到一个特殊的 URL,比如:
https://mystartup.basecamphq.com/
——我认为这真的很简洁,它很好地隔离了多个组织在单个应用程序中。我的问题是:假设我已经控制了给定的域,是否有一种简单的方法可以使用 Rails 和 Nginx 实现这种黑魔法——即动态创建虚拟主机?
I really like Basecamp's idiom of "dynamically" creating custom virtual hosts for clients -- for instance, once a company has signed up they may quickly login to a special URL like:
https://mystartup.basecamphq.com/
--which I think is really neat, it segregates multiple organizations nicely within a single application. My question is: assuming I've got control of a given domain, is there an easy way to do this kind of black magic with Rails and Nginx -- that is, to dynamically create a virtual host?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如何在Rails
另外:
How to do Basecamp-style subdomains in Rails
Also:
大多数情况下,您并没有真正创建虚拟主机。您创建了一个子域,然后接受其中的任何子域,并将其通过管道传输到后端进行处理(404、302 或 200)。
搜索“nginx 通配符子域”。 slicehost 的结果通常非常有帮助。
Most cases you are not truly creating a virtual host. You created a subdomain one time that then accepts ANY sub-domain off of it and you pipe it to your back end for processing (404, 302, or 200).
do a search on "nginx wildcard subdomain". The results from slicehost are usually very helpful.