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.
Try this in your gobal_asa
protected void Application_Start() { ... System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls; }
Please, sign in to be able to submit a new answer.