SSL Certificate Windows Server 

How to add “Letsencrypt” free SSL in IIS server updated in Aug 2020

Letsencrypt is a free SSL Service provided by a group of an internet organization. It is a free, automated, and open certificate authority (CA), run for the public’s benefit.  Letsencrypt is a certificate authority which provides free SSL certificates with 90-days lifetime. The idea behind this innovation is to improve and simplify the process of SSL installation and make the Internet a safer place by providing certificates at no cost. While there are two main functions of SSL – encryption, and validation, Let’s encrypt is aimed at encryption only. Steps…

Read More
NodeJS Node JS Windows Server 

how to add SSL certificate in node server for webRTC app

I have gone through this problem when I was implementing webRTC signaling server in node.js using muaz khan webRTC experiments. I was running trying to run node on windows server 2012 R2 platform where I already hade a wildcard SSL certificate  (Wildcard SSL Certificate saves you money and time by securing your domain and unlimited sub-domains on a single certificate.) with my main domain so I was trying to implement using that certificate only, here is what I did to solve it. This process is for windows server: First, get .crt(certificate…

Read More
Windows Windows Server 

How to host SignalR with SSL/https or adding new port to SSL

To host SignalR server and client in a secure hosting, you have to bind a port to SSL to run as https. next comes why to bind a new port to SSL when 443 default already available? Why, because if you are self-hosting outside IIS and 443 is already assigned you have to add a new port to SSL. Follow below steps to find a solution. Binding a new port to SSL Self-hosting under HttpListener is good, but one of the negative aspects of not being part of IIS is…

Read More