How to enable TLS 1.2 on Windows Server 2008 R2

Problem How to enable TLS 1.2 on Windows Server 2008 R2? Resolution QuoVadis recommends enabling and using the TLS 1.2 protocol on your server.  TLS 1.2 has improvements over previous versions of the TLS and SSL protocol which will improve your level of security.  By default, Windows Server 2008 R2 does not have this feature enabled.  This KB … Read more

How to install .Net Core on Ubuntu 16.04

Add the dotnet apt-get feed In order to install .NET Core on Ubuntu, you need to first set up the apt-get feed that hosts the package you need. sudo sh -c ‘echo “deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ xenial main” > /etc/apt/sources.list.d/dotnetdev.list’ sudo apt-key adv –keyserver apt-mo.trafficmanager.net –recv-keys 417A0893 sudo apt-get update Install .NET Core SDK Before you … Read more