How to Install free Let's Encrypt SSL from Control panel (Windows Hosting)

 

How to Install free Let's Encrypt SSL from Contol panel (Windows Hosting)

1. Login to your webhosting Contol panel at URL https://cp6.utiware.net/
2. In the next screen, you will see icons for all the services you can manage from the Contol panel. Click on Web Sites under your plan.
3. Click on the website to which you wish to install the Let's Encrypt SSL
4. Choose SSL from the tabs on the next window.
5. Click on the Install Certificate button and wait until the SSL installation process is completed.
6. If the installation is successfully completed you will get the following message:
7. Let'sEncrypt certificate successfully installed on your website

After the installation please use this rule to redirect the user to the https version of your website. Please add the "rewrite" section to your custom web.config file.

<rewrite>
<rules>
<rule name="Redirect HTTP to HTTPS" stopProcessing="true">
<match url="(.*)"/>
<conditions>
<add input="{HTTPS}" pattern="^OFF$"/>
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther"/>
</rule>
</rules>
</rewrite>



Was this answer helpful?

 Print this Article

Also Read

How to add new A records

Follow the steps given below to add new A records (1) Login to WebsitePanel and click Domains...

How to Create a Sub-Domain

You can sub-domains and create virtual directories from inside your Control Panel.  Virtual...

How to View or Edit your DNS Records

Your Control Panel provides the ability to edit the DNS records of your domain to achieve various...

How to create email signature in Smartermail

This article will guide you on how to create signature for a email account in Smartermail 1)...

How to Switch your .php Web Application from php 5x to php 7x and Vise Versa ( Windows Hosting )

Dear Sir. By default your .php web application is set to utilize the .php 5x However, you can...