Question
· May 28, 2022

Configure SSL with IRIS Health Management Portal

Hi Team,

I need to configure SSL with my InterSystems IRIS Health management Portal.

I have applied the some solution but it's not working for me. Can you please someone help me on this.

Thanks,

Ankur Shah

Product version: IRIS 2022.1
Discussion (3)0
Log in or sign up to continue

Hi Ankur,

If you want to open Management portal over IRIS internal apache then you need to follow below,

Modify below file

/iris_install_directory/httpd/conf/httpd-local.conf

Add ssl configuration like below (you need to have ssl certificate files) changing port as per your requirements

Listen 57773
<VirtualHost *:57773>
    SSLEngine on

            ServerName  fully_qualified_host_name

#   Server Certificate:

SSLCertificateFile /path_to_SSL_folder/filename.crt

#   Server Private Key:

            SSLCertificateKeyFile /path_to_SSL_folder /filename.key

#   Server Certificate Chain:

            SSLCertificateChainFile /path_to_SSL_folder /filename.crt

#   Certificate Authority (CA):

            SSLCACertificateFile /path_to_SSL_folder /filename.crt

</VirtualHost>

Restart instance, Management portal should open over ssl with port mentioned in above file.

https://fully_qualified_host_name:57773/csp/sys/UtilHome.csp

But but if you need to open this on OS apache then first you need to configure SSL at OS level. 

Regards

Kamal Suri