MyAsp.net supports Let's Encrypt

  • 1814
  • 0
  • IIS
  • 2017-08-16

MyAsp.net supports Let's Encrypt 

Do you support Let's Encrypt - Free SSL/TLS Certificates in shared hosting?

SSL

We can support any third party SSL cert, including Let's Encrypt - Free SSL/TLS Certificates. Everyone can import ssl cert from SSL manager in hosting control panel for free.

We cannot automatically request and install certificates currently for such ssl type. To get ssl cert from Let’s Encrypt, you have to install software that uses the ACME protocol to your computer. Later, you can export ssl cert to pfx format and import it to your site from hosting control panel. Please click here for more details.

[source: MyAsp.net]

You will need to use openssl.

openssl pkcs12 -export -out domain.name.pfx -inkey domain.name.key -in domain.name.crt

The key file is just a text file with your private key in it.

You can install openssl from here: openssl

[source:stackOverflow]