Configure Azure BLOB Storage
Allow CORS to your site - Necessary for Feature Flags & PDF Files
Setting up the CORS permissions allows your web application running from one domain access another domain. Without allowing CORS, your website will not be able to get the documents stored in BLOB.
To provide permissions:
Navigate to http://portal.azure.com/
Go to your BLOB Storage Container
In the left panel: Go to Settings -> CORS
Provide the following data for Blob Service:
Allowed Origins: The website which needs access to BLOB Storage
Allowed Methods: The request types allowed to your Allowed Origin
Allowed Headers: Headers allowed to your Allowed Origin
Repeat step 4 for all websites that need access
Allowed Origins
Allowed Methods
Allowed Headers
Exposed Headers
Max age
localhost:3000
POST, GET, DELETE, PUT,HEAD
x-ms-blob-type
Last updated