Blob copy does not allow custom hostname
See original GitHub issueWhich service(blob, file, queue, table) does this issue concern?
blob
Which version of the Azurite was used?
3.15.0
Where do you get Azurite? (npm, DockerHub, NuGet, Visual Studio Code Extension)
DockerHub/npm
What’s the Node.js version?
v14.15.4
What problem was encountered?
startCopyFromURL
and copyFromURL
does not respect disableProductStyleUrl
option and therefore I cannot use an url to copy a blob locally.
Example of url: http://mystorage.mydomain.com:10000/devstoreaccount1/container/blob
Steps to reproduce the issue?
- Start Azurite with:
azurite --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0 --disableProductStyleUrl
- Use .Net library to copy a blob with
StartCopyFromUriAsync
method.
Have you found a mitigation/solution?
Using 127.0.0.1 as host solves the problem, but we want to use a proper hostname. Or using version 3.14.0.
Issue Analytics
- State:
- Created 2 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
Map a custom domain to an Azure Blob Storage endpoint
In this article. Map a custom domain with only HTTP enabled; Map a custom domain with HTTPS enabled; Feature support; Next steps. You...
Read more >Custom domain with Azure blob storage - VMLabBlog.com
In this blog I will show how to use a custom domain with Azure blob storage. By default when you create an Azure...
Read more >Azure Storage blob using custom domain is not resolving ...
I changed the azure custom domain to www.iprobesolutions.com (instead of iprobesolutions.com). I set my host records as per this screenshot: ...
Read more >Set up Custom Domains with HTTPS on Azure Static Websites
My goal here is to document the process I went through to enable HTTPS on a root domain for a static website in...
Read more >Introduce how to implement a custom domain for binary blob
Sometimes, there is a scenario that the existing Refinitiv's defined Domain Message Models are not sufficient to support new requirements because they are ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The fix is released in Azurite 3.16.0.
A PR is raised to fix this issue: https://github.com/Azure/Azurite/pull/1252