Greetings!
When Azure Storage indicates that it does not support HTTP for custom domain names, it means that all requests to the storage account using a custom domain must be made over HTTPS. Using HTTP is not allowed and will be blocked if Secure Transfer Protocol is enabled. Enabling Secure Transfer Protocol ensures that all data transmitted to and from Azure Storage is encrypted, enhancing security.
If Secure Transfer Protocol is enabled on your storage account, any requests made over HTTP will fail. This is a security feature to prevent unencrypted data transmission. To ensure that your custom domain configuration is compliant with this security feature, you should:
- Enable log analytics on the storage account to monitor requests.
- Query for any incoming requests that use HTTP.
Here is a sample query to help you identify such requests:
StorageBlobLogs
| where AccountName == "<YourStorageAccountName>"
| where Protocol == "HTTP"
By identifying and addressing any HTTP requests, you can transition to using only HTTPS, ensuring compliance with Secure Transfer Protocol and maintaining the security of your data.
Resources:
Hope this helps. If you have any follow-up questions, please let me know. I would be happy to help.
Please do not forget to "up-vote" wherever the information provided helps you, as this can be beneficial to other community members.