I want to upload videos to Azure Blob Storage, I’ve tried two different ways below but want to get the server side solution working because I don’t want the Blob Storage to be publicly open.
Approach 1
- allow users to upload directly to blob storage via SAS URLs, good and quick solution but means I have to open up my Blob Storage network settings to be public
Approach 2
- Upload via server side, slower than. Client side but I can lock down my Blob Storage network settings but causes users to sometimes run into 502 error when uploading large video files
Any suggestions to the above? If possible I would like approach 2 to work.