通过 PHP 的身份验证和授权方案使用 Apache/lighttpd 提供下载服务?
我想向经过身份验证和授权的用户提供一些机密文件。 PHP 部分运行良好,目前 PHP 脚本输出具有适当内容类型的文件内容。然而,有些文件非常大,因此,我想让 HTTP 守护进程来执行服务过程,并且首先“询问”PHP 用户是否可以获取该文件。我该怎么做?
I want to serve some confidential files to authenticated and authorized users. The PHP part is working well, and currently the PHP script outputs the file contents with the appropriate content types. However, some files are really large, thus, I'd like to have the HTTP Daemon to do the serving process and just "ask" PHP first if the user can get the file. How would I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 lighttpd: http://redmine.lighttpd.net/wiki/1/ X-LIGHTTPD-send-file
对于 apache,需要额外的 mod:https://tn123.org/mod_xsendfile/
用法如下:
如果使用 Apache,请确保还在 Apache 配置中打开 XSendFile。否则,您将提供空文件。例如:
For lighttpd: http://redmine.lighttpd.net/wiki/1/X-LIGHTTPD-send-file
For apache aditional mod is required: https://tn123.org/mod_xsendfile/
Usage will be like this:
If using Apache, make sure you also turn on XSendFile in your Apache configuration. Otherwise, you will be serving empty files. For example: