Force SSL using ssl_requirement in Rails 2 app

前端 未结 3 778
耶瑟儿~
耶瑟儿~ 2020-12-03 03:27

I have a Rails application which need to run under SSL. I tried ssl_requirement but seems I have to type in all the actions in every controllers.

Is there any method

3条回答
  •  抹茶落季
    2020-12-03 03:47

    The key problem is that force_ssl.rb isn't being loaded and that lib isn't loaded by default in rails 3.1. You have to add

    config.autoload_paths += %W(#{config.root}/lib)
    config.autoload_paths += Dir["#{config.root}/lib/**/"]
    

    to application.rb

提交回复
热议问题