I am using Sinatra to return some IFRAME contents, and I'd like to allow cross-domain src. Unfortunately, Sinatra is automatically adding an X-Frame-Options header to my response. How do I turn that off?
|
feedback
|
|
Sinatra uses Rack::Protection, in particular the You can configure which protections are used. Sinatra turns most of the on by default, (some are only enabled if you also are using sessions, and Rack::Protection itself doesn't enable some by default). To prevent sending the
| |||||
feedback
|