Content staging hosted in Azure Webapp with TLS 1.2

Rui Wang asked on December 10, 2018 18:53

Hi all,

Does anyone use Kentico V10, host both Staging/UAT and Production in Azure Webapp, with SSL setup, and use Content Staging to push from Staging/UAT to Production? Do you use TLS 1.2 or 1.0? If you use 1.0, have you tried 1.2 and did you get any errors for connection?

Thanks.

Recent Answers


Peter Mogilnitski answered on December 11, 2018 03:36 (last edited on December 14, 2018 14:44)

Try this in your gobal_asa

protected void Application_Start()
{
...
System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;
}
0 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.