If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to REGISTER before you can post. To start viewing messages, select the forum that you want to visit from the selection below.
Ad Widget
Collapse
Web ui Media type Message templates text view problem
Case solved. I had something writed wrong with httpd .conf file ( this was added to zabbix.conf). Commenting out these two line and Ui works "normally".
Header set Strict-Transport-Security "max-age=31536000"
Header set Content-Security-Policy "default-src 'self' *.openstreetmap.org; script-src 'self' 'unsafe-inline' 'unsafe-eval'; connect-src 'self'; img-src 'self' *.openstreetmap.org data:;"
First header set is for HSTS, which should not interfere with any page content.. its just a security measure, forcing to use https.
I suppose other one is something fo embedding openstreetmaps data ...
Comment