开发者

setting up ssl on devise

开发者 https://www.devze.com 2023-02-06 05:15 出处:网络
I\'d like to require ssl authentication开发者_如何学Python for the user resource on devise. I was expecting that to be as simple as it is in rails, like:

I'd like to require ssl authentication开发者_如何学Python 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


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

constraints :protocol => "https" do
  devise_for :users
end


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.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消