AWS for Microsoft Workloads
Reply
How to enable TLS 1.2 on Windows Server 2008 R2?
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 article will describe the process to enable this.
Your server should now support TLS 1.2.
https://www.codeproject.com/Articles/1190592/A-Few-Great-Ways-to-Consume-RESTful-API-in-Csharp
https://docs.microsoft.com/en-us/azure/app-service/containers/tutorial-dotnetcore-sqldb-app
If you want to use SSL with your site in Azure you need to have a .pfx file.
We Apache you most likely have a certificate and a private key. I am using certificate from Letsencrypt.
Using openssl you can generate the .pfx file like this:
openssl pkcs12 -export -out /tmp/certificate.pfx -inkey /etc/letsencrypt/live/yourdomain.tld/privkey.pem -in /etc/letsencrypt/live/yourdomain.tld/cert.pem -certfile /etc/letsencrypt/live/yourdomain.tld/chain.pem
Replace yourdomain.tld with your actual domain name.
You will be asked for a password to protect the .pfx file
https://blogs.msdn.microsoft.com/uk_faculty_connection/2017/09/08/how-to-build-a-chat-bot-using-azure-bot-service-and-train-it-with-luis/