Skip to content

Instantly share code, notes, and snippets.

@samuelkadolph
Created July 6, 2011 18:04
Show Gist options
  • Save samuelkadolph/1067897 to your computer and use it in GitHub Desktop.
Save samuelkadolph/1067897 to your computer and use it in GitHub Desktop.
Redirect http traffic to https from routes.rb only
constraints :protocol => "https" do
resources :gizmos
end
constraints :protocol => "http" do
match "/(*path)" => redirect { |p, r| URI(r.url).tap { |u| u.scheme = "https" }.to_s }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment