Umbraco - SSL Certificate
I want to add an SSL certificate to my cms umbraco site, does anyone have any helpful links or ideas on how to do this?
thank
+3
Funky
source
to share
1 answer
The SSL certificate has to be added to the IIS web server hosting your umbraco site.
Your SSL or hosting provider should have instructions on how to install the certificate.
Additionally:
After installing the certificate, you can force HTTPS in the Umbraco section by changing the appSetting umbracoUseSSL
in the web.config file to true
<appSettings>
<add key="umbracoUseSSL" value="true" />
</appSettings>
On a website, you can use an HTTPS redirect package to redirect the required pages to use SSL
+10
chris vdp
source
to share