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 that I can add a before_filter in application controller with ssl_requirement, so that the apps will redirect to https automatically when user request is in http?

Thanks all. :)

link|improve this question

78% accept rate
feedback

3 Answers

up vote 21 down vote accepted

Use a Rack Middleware.

# lib/force_ssl.rb
class ForceSSL
  def initialize(app)
    @app = app
  end

  def call(env)
    if env['HTTPS'] == 'on' || env['HTTP_X_FORWARDED_PROTO'] == 'https'
      @app.call(env)
    else
      req = Rack::Request.new(env)
      [301, { "Location" => req.url.gsub(/^http:/, "https:") }, []]
    end
  end
end

# config/environment.rb
config.middleware.use "ForceSSL"
link|improve this answer
it's working well. thanks mate. :) – siulamvictor Oct 6 '10 at 6:15
2  
lib/force_ssl.rb won't be included by default in Rails 3.0.X. You'll need to add this line to your application.rb: require File.expand_path('../../lib/force_ssl.rb', __FILE__) or do some sort of similar require elsewhere. Also, the config.middleware.use "ForceSSL" line should go in config/environments/production.rb. – Max Masnick Jun 22 '11 at 17:34
5  
As pointed out by Simone Carletti, in rails >= 3.1 there a force_ssl method available. See simonecarletti.com/blog/2011/05/configuring-rails-3-https-ssl – Enrico Carlesso Jul 11 '11 at 16:10
Thank buddies for keep updating. :) – siulamvictor Oct 7 '11 at 3:14
feedback

You can try test if request is in ssl or not in a before_filter in your application

class Application < AC::Base

  before_filter :need_ssl

  def need_ssl
    redirect_to "https://#{request.hosts}:#{request.port}/#{request.query_string}" unless ssl?
  end
end
link|improve this answer
oops... i got an error. undefined method `ssl?' – siulamvictor Oct 5 '10 at 10:22
Maybe your are not in Rails 3 ? – shingara Oct 5 '10 at 11:07
i am still in rails 2... so this is in rails 3, right? – siulamvictor Oct 5 '10 at 19:03
Should be unless request.ssl?? – Mattias Wadman Apr 26 '11 at 12:54
feedback

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

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.