Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can the new Azure File Service be used from Azure WebSites?

The title pretty much says it all... Microsoft just launched the new File Services on Azure. (http://blogs.msdn.com/b/windowsazurestorage/archive/2014/05/12/introducing-microsoft-azure-file-service.aspx) Can I use it from within a Azure WebSite? Or is it limited to use from VMs and CloudServices due to "net use" restrictions? Thanks

like image 848
JoaoCC Avatar asked Oct 31 '22 23:10

JoaoCC


1 Answers

Yes - use the REST API - the Azure website MUST be in the same region as the storage account.

Once your share is created, it can be accessed via the SMB or REST protocol from any Azure node (VM/Worker/Web role) hosted in the same region as the storage account hosting the share.

like image 157
viperguynaz Avatar answered Nov 12 '22 23:11

viperguynaz