Ruby on Rails:如何创建受 http 密码保护的子域?

发布于 2024-10-04 23:42:59 字数 122 浏览 2 评论 0原文

我想要一个像... 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 技术交流群。

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

发布评论

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

评论(2

莫言歌 2024-10-11 23:42:59

这相当简单:

# products_controller.rb
before_filter :authenticate

protected

def authenticate
  authenticate_or_request_with_http_basic do |username, password|
    username == "foo" && password == "bar"
  end
end

请参阅:http://railscasts.com/episodes/82-http-basic - 身份验证

It's fairly simple:

# products_controller.rb
before_filter :authenticate

protected

def authenticate
  authenticate_or_request_with_http_basic do |username, password|
    username == "foo" && password == "bar"
  end
end

See: http://railscasts.com/episodes/82-http-basic-authentication

剑心龙吟 2024-10-11 23:42:59

编写一个小型机架应用程序。检查其子域是否正确以及执行基本身份验证都可以轻松完成。

Write a small rack application. Both checking if its the correct subdomain and enforcing basic auth can be done easily.

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