Home > Software engineering >  Restricting FTP folder access to Azure service
Restricting FTP folder access to Azure service

Time:05-07

I'm trying to restrict FTP access to Azure App Service. I've got some folders in wwwroot folder that I'd like to provide to other users to access. Basicly giving each user a folder that they can upload files to. I've successfully uploaded files to wwwroot folder wherever I want, but controlling access is beyond me. Documentation is sparse on this subject, as far as I've noticed and the suggested approach is using azcopy utility.

Can anyone shed a light on this? Or am I trying to achive something that's not possible with Azure? Thanks

CodePudding user response:

Restricting FTP folder access to Azure service

  • FTP access to an Azure Web App is 'all or nothing' i.e.. It can be disabled completely or Fully accessed.

  • You can map a file share from Azure Storage to AppService and allow users to access only files through File Shares rather than App Service.

  • We can also use blob storage, which will provide you with fine grain control.

  • FileMage Gateway is an FTP and SFTP server backed by Azure Blob Storage.

  • FileMage Gateway provides folder level permissions control. Permissions can be assigned on a user or group basis.

Please refer FileMage SFTP FTP to Azure Blob Storage and Azure App Service file or folder permission for more information

  • Related