HTML pages not showing in Views

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
Lisa.sorenson
Posts: 17
Joined: Wed Mar 05, 2014 11:37 am

HTML pages not showing in Views

Post by Lisa.sorenson »

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?
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: HTML pages not showing in Views

Post by scottwilkerson »

That page has a content security policy that disallows it from being embedded in a frame.

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.com
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/
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
Locked