Hi there! I've installed and password protected my Munin install. I am able to access the script through https://domain.com/munin with admin / password. In my ISPC panel, I've set those values under Munin in server config. When I go to Monitor / Munin, the frame that's supposed to show munin is blank. I've tried to show just the frame or view it's source but it results in a 0 byte file, I guess because the frame is being generated through jscript. Where should I start to get the page visible in my ISPC install? Thanks for your time!
You can no longer display munin in ISPConfig in recent web browsers as they block iframe content from a different port.
Thanks very much, I had missed that. Any alternate methods of embedding that could be implemented without changes being required from the munin/monit developers?
What might work is to try to add some kind of proxy in the ispconfig vhost to e.g. proxy a URL like /munin to the munin service. But have not tested that, just as in idea.
Wouldn't it be enough to allow CORS for the munin address within apache2/nginx vhost or htaccess? Something like: Code: Header add Access-Control-Allow-Origin "mydomain.tld:4242"
Tried to add both Header add Access-Control-Allow-Origin "*" or Header add Access-Control-Allow-Origin "domain.name:{monit_port}" to <IfModule mod_headers.c> .... </IfModule> of ispconfig.vhost, alas!