views:

151

answers:

1

How to set up HTTP authentication in a Rails application running on WEBrick?

+1  A: 

Rails has a built in method for adding http basic authentication.

You should also look at something like Authlogic for authentication and user session management.

danivovich