Skip to content

Instantly share code, notes, and snippets.

@nowk
Created March 14, 2013 01:06
Show Gist options
  • Save nowk/5157982 to your computer and use it in GitHub Desktop.
Save nowk/5157982 to your computer and use it in GitHub Desktop.
private
def force_ssl
if Rails.env.production?
if !request.ssl?
redirect_to :protocol => 'https'
end
end
end
before_filter :force_ssl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment