SSL installed with web server... connection still not secure?

I have installed an SSL certificate on the subdomain and domain but when I connect to SuiteCRM via web browser I get a warning the connection is not secure.

Cant find settings to add keys or update keys

Hi,
welcome to the suite-community!

You have to configure your webserver to redirect http:// to https:// too:

Try by adding this to your .htaccess file:

<IfModule mod_rewrite.c>
        RewriteEngine On
	RewriteCond %{HTTPS} off
	RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_URI} (.+)/$
        RewriteRule ^ %1 [R=301,L]
</IfModule>
1 Like

This worked for me. Thank you.