FTP to Azure Blob Storage

前端 未结 2 1065
醉酒成梦
醉酒成梦 2020-12-28 16:43

I had to setup secure FTP to Azure Blob Storage using popular FTP clients (like FileZilla, for example). After doing lot of research, I came across a link that says:

2条回答
  •  执笔经年
    2020-12-28 17:10

    If you are okay with a little programming with Node.js, you can host a FTP server directly backed by Azure Blob.

    You can use nodeftpd combined with azure-storage-fs. nodeftpd is the FTP server written in Node.js and support third-party file system manager. azure-storage-fs is a file system manager that is designed to use for nodeftpd and talks to Azure Blob directly.

    The file system manager integration code is clearly written under README.md of azure-storage-fs. But you will need to write your own authentication code.

提交回复
热议问题