I have an external website page that I'm tyring to link to in my view so it rotates through. Let's say I want one of the view pages to be a link to this: https://www.fireeye.com/cyber-map/threat-map.html
It is just a blank page when the rotation gets to this page in the view. Any ideas on how to get this to show in my view rotation?
HTML pages not showing in Views
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: HTML pages not showing in Views
That page has a content security policy that disallows it from being embedded in a frame.
If you own this page, you can adjust the policy to allow access from your Nagios server.
there is a CSP tester here
https://csp-evaluator.withgoogle.com/
Code: Select all
worker-src blob: ;
default-src https: data: 'unsafe-inline' 'unsafe-eval';
frame-ancestors 'self' http://fireeye.lookbookhq.com https://fireeye.lookbookhq.com http://content.fireeye.com https://content.fireeye.comthere is a CSP tester here
https://csp-evaluator.withgoogle.com/