Forum Discussion
dxxx0001
Apr 22, 2025Copper Contributor
TLS 1.0 and 1.1 Support on Azure Web App
I know Azure is winding up support for TLS 1.0 and 1.1 by August 2025. Does anyone can help me to access our existing IoT devices to connect to Azure Web App using this TLS 1.0 and 1.1? Our d...
Kidd_Ip
Apr 23, 2025MVP
Check the URL on the similar case, for your case, would suggest:
1. Enable Legacy TLS Temporarily
- Check if you can enable TLS 1.0 or 1.1 for your Web App:
- Go to Azure Portal > App Service > TLS/SSL Settings.
- Set the Minimum TLS Version to 1.0 (if still supported in your region).
2. Use a Proxy or Gateway
- Set up a TLS 1.2-compatible proxy or gateway between your IoT devices and Azure Web App.
- The proxy can handle TLS 1.2 connections with Azure while communicating with your devices using TLS 1.0 or 1.1.
dxxx0001
Apr 23, 2025Copper Contributor
We already have min TLS 1.0 configured and still it rejecting our incoming requests.
How to set up TLS 1.2 compatible proxy while our device is pointing to azure generated url and try to connect over TLS?