- get manual files at sslforfree.com
- edit the TXT entries at Namecheap
- download the certs that sslforfree.com gives you
- convert the crt file to pfx - open Mac Terminal, and
cd
to the directory that you downloaded them to. openssl pkcs12 -export -out myVipSiteName-CurrentMonth-CurrentYear.pfx -inkey private.key -in certificate.crt
- enter a pwd
- upload to Azure portal.
- MAKE NOTE OF THE NEW CERT'S THUMBPRINT
- change bindings in Azure
- delete the old cert in Azure
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using IndustrialCodeBox.APIConnector; | |
using IndustrialCodeBox.APIConnector.Interfaces; | |
using System.Data; | |
using System.Collections.Specialized; | |
using System.Windows.Forms; |