Cannot Render Console From Some IP With Rails

Posted By Weston Ganger

I was getting this odd error Cannot render console to 192.168.1.5.
That was the IP of the machine I was running the server on.

In my development environment I don't care what address it comes from because my OS's firewall will restrict that.

Recommended: Disable That whiny crap in the development environment

# config/application.rb

config.web_console.whitelisted_ips = '192.168.1.5'
# or a whole network
config.web_console.whitelisted_ips = '192.168.0.0/16'

Related External Links:

Article Topic:Software Development - Ruby / Rails

Date:November 17, 2015