I'd like to require ssl authentication for the user resource on devise. I was expecting that to be as simple as it is in rails, like:

  devise_for :users, :constraints => { :protocol => "https" }

Also, I couldn't find any documentation on devise's github, though I've found some dead links pointing to it at the google groups.

Does anybody has a hint on how to get it working easily? I thought I'd be simple, given the popularity of the plugin

link|improve this question

feedback

4 Answers

up vote 8 down vote accepted

:constraints won't work as option, but this probably will:

constraints :protocol => "https" do
  devise_for :users
end
link|improve this answer
I changed my devise to use this and it didn't work. I got No route matches [DELETE] "/users/sign_out" – jcollum Feb 29 at 1:52
I had a problem with signing out too, so here's an answer that could help others. Basically, the problem was that DELETE "/sign-out" (with http) was redirected to GET "/sign-out" (https). So I replaced my sign_out_path by sign_out_url(protocol: "https"), and now it works fine. I actually overrode sign_out_url to always set the protocol. – Robin Apr 5 at 21:33
feedback

Integrate SSL Requirement into your app and using Devise. The answer didn't work but this did for me, especially since I was using SSL Requirement already.

link|improve this answer
You are right, I didn't check the answer correctly back then, and didn't update here. Did you get the redirection between ssl routes and regular routes to work? – Thiago Feb 11 '11 at 15:36
I had mine working before, but now you are scaring me... I literally just implemented it but started coding somewhere else. I can check. gulp... – pjammer Feb 11 '11 at 15:47
The article linked to worked for my Rails 3 app using: config.to_prepare { Devise::SessionsController.ssl_required :new, :create } in my application.rb file. – DownChapel Apr 24 '11 at 21:15
feedback

I suggest using Rack::SSL, maybe with Rack::SslEnforcer for more configuration options.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.