Enable CORS in Rails
12 April 2022 (Updated 1 October 2023)
On this page
Install rack-cors
gem
Add to Gemfile:
Run:
Configure CORS policy
Edit config/initializers/cors.rb
:
Edit config/environments/development.rb
and config/environments/test.rb
to allow access from all hosts when running in the development
and test
environments:
Edit config/environments/production.rb
to restrict access to specific host in the production environment
:
You’ll want to set the FRONTEND_URL
as an environment variable in your production server.
Restart your dev server to activate the new CORS policy.
Tagged:
Rails
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment