How to test 500.html in rails development env?

The only way I’ve found to do this so far is to set in development.rb

config.consider_all_requests_local = false

Now, restart the server.

Then access the URLs using my local IP address: http://192.168.1.135:3000/blah

The other settings mentioned don’t seem to have any effect.

Leave a Comment