I have a conceptual question about uploading files to Azure blob storage. In a Django project of mine, I'm uploading files like so:
blob_service.put_block_blob_from_path(
'containername',
name,
path.join(path.join(PROJECT_ROOT,'uploads'),name),
x_ms_blob_content_type='image/jpg'
)
Do these files directly get uploaded to the storage? Or do they first go to my VM, and are then transferred to the storage?