I have a rails site that uses SSL so https://example.com
I want to display an iframe within my site that can contain either http or https.
https://google.com seems to work fine when I have this set in my application.rb
file:
config.action_dispatch.default_headers = {
'X-Frame-Options' => 'ALLOWALL'
}
However, http://google.com does not seem to display. Does anyone know what I need to do to get a http://google.com to display in my iframe?