2

I would like to access a blob e.g. https://mystorage.blob.core.windows.net/container/file.dat also by using a public IP from Azure in my embedded application. For example https://1.2.3.4/container/file.dat should be the same file.

I have checked Azure Load Balancer, App Gateway, App Proxy, Azure CDN and Azure Front Door services bud could not find a solution.

EDIT:

Azure storage has private link option. I tried today and no success. Basically I am trying to link my public IP to Azure storage blob access.

Demir
  • 1,787
  • 1
  • 29
  • 42

1 Answers1

0

This is the error you get:

enter image description here

First, make sure your blob can be access by public:

enter image description here

And if you don't have requirement to set networking, please make sure:

enter image description here

Then set the container access level:

enter image description here

enter image description here

Then, it should be no problem.

Cindy Pau
  • 13,085
  • 1
  • 15
  • 27
  • Thank you very much @Bowman Zhu for this clear explanation. Public access is enabled and I can already access the file with the domain name. The problem is that I need to replace domainname mystorage.blob.core.windows.net with a public IP. Also tried Azure private link today and it did not worked. – Demir Jun 21 '21 at 15:19