Skip to content

Instantly share code, notes, and snippets.

@felipefunes
Created November 3, 2019 20:48
Show Gist options
  • Save felipefunes/d412a666ebeaba027e84bfdabd2ac4f2 to your computer and use it in GitHub Desktop.
Save felipefunes/d412a666ebeaba027e84bfdabd2ac4f2 to your computer and use it in GitHub Desktop.
if defined?(Rack::Cors)
config.middleware.insert_before 0, Rack::Cors do
allow do
origins 'www.getonbrd.com', 'cludfront-url.net'
resource '*', headers: :any, methods: [:get, :post, :options]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment