2010-11-29 18 views

答えて

2

それはかなり簡単です:

# 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-authentication

+0

認証部分をカバーする= \ thanks!今はサブドメインが必要です。 = \ – NullVoxPopuli

1

は、小さなラックアプリケーションを記述します。正しいサブドメインと基本認証を実施するのが簡単かどうかをチェックします。

+0

鉄道の精神で、この1つのhttp://railscasts.com/episodes/221-subdomains-in-rails-3は、​​サブドメインについて知りたいことをすべて伝えます。 –

+1

私は複数の答えを部分的な解決策として調べることができたらいいです... – NullVoxPopuli

+0

ああ、これはレール3です。 – NullVoxPopuli

関連する問題