真正的虚拟FTP
我希望设置一个 FTP 服务器而不将其连接到文件系统。
我想使用数据库来存储每个用户可以访问我网站上的许多大文件中的哪些文件。由于所涉及文件的数量和大小,这些文件无法全部存储在单个服务器上,因此基于链接的设置没有用。
我想象一个 FTP 服务器将充当后端 CDN 的传递,该后端 CDN 存储所有文件并检查远程数据库以了解要呈现的文件。
这样的系统存在吗?如果它不存在,哪个开源 FTP 服务器最容易修改以满足我的需要?
I am looking to set up an FTP server without connecting it to a file system.
I want to use a database to store which of the many large files on my site each user will have access to. Because of the number and size of the files involved, the files cannot all be stored on a single server so a link based setup is not useful.
I am imagining an FTP server that will act as a pass-through for a backend CDN that stores all the files and checks a remote database for which files to present.
Does a system like this exist? If it doesn't exist, Which open source FTP server would be easiest to modify to suit my needs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你看过 JScape 吗?
虽然要花钱但有能力
Have you looked at JScape?
It costs money but has the capability
既然您在 StackOverflow,我假设您已准备好编码。在这种情况下,您可以使用 FTP/FTPS 服务器组件,包含在我们的 FTPSBlackbox 中SecureBlackbox 产品。它允许您自己处理所有操作,因此您不会以任何方式绑定到文件系统。
我们还有具有类似设计的 SFTP 服务器(SSH 文件传输协议)。
Since you are on StackOverflow, I assume that you are ready for coding. In this case you can use FTP/FTPS server component, included in FTPSBlackbox of our SecureBlackbox product. It lets you handle all operations yourself, so you are not bound to the file system in any way.
We also have SFTP server (SSH File Transfer Protocol) with similar design.