Ruby on Rails:如何创建受 http 密码保护的子域?
我想要一个像... admin.example.com 这样的子域
,但我希望它需要用户和密码。就像......使用浏览器界面的那种,而不是数据库支持的身份验证系统。
有哪些好的方法可以做到这一点?
I want a subdomain like... admin.example.com
but I want it to require a user and password. Like... the kind that uses teh browser's interface, rather than a database backed authentication system.
what are some good methods of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这相当简单:
请参阅:http://railscasts.com/episodes/82-http-basic - 身份验证
It's fairly simple:
See: http://railscasts.com/episodes/82-http-basic-authentication
编写一个小型机架应用程序。检查其子域是否正确以及执行基本身份验证都可以轻松完成。
Write a small rack application. Both checking if its the correct subdomain and enforcing basic auth can be done easily.