Question
· Sep 15, 2025

IRIS Health Dashboard - Images not loading

Iris Health dashboard images not loading after first install, getting 404 on /csp paths, is there any setup I am missing?, found this old community post: https://community.intersystems.com/post/debugging-why-management-portal-... but the links are outdated, can anyone please guide me to proper documentation. Thanks in advance.

 

Screenshot attached:

 

Product version: IRIS 2025.1
$ZV: IRISHealth-2025.1.1.313.1-lnxubuntu2404x64
Discussion (5)2
Log in or sign up to continue

On Ubuntu, check your /etc/apache2/apache2.conf file and verify that the csp Directory stanza contains a CSPFileTypes line with all of the required file extensions needed:

<Directory "/opt/webgateway/csp">
        CSPFileTypes csp cls zen cxw png jpg css gif svg js
        AllowOverride None
        Options MultiViews FollowSymLinks ExecCGI
        Require all granted
        <FilesMatch "\.(log|ini|pid|exe)$">
                Require all denied
        </FilesMatch>
</Directory>

I recently had a similar issue with MacOS with Apache as my web server. Working with WRC, we found that Apache was running as a user (_www) that did not have access to the InterSystems IRIS files. In my case, the solution was to go into the httpd.conf file and edit the user that Apache runs as such that it does have access (in my case, we just used irisusr for simplicity as I'm not using the web server for anything else). Hope this helps anyone running into similar issues!