我已在我的服务器上安装了XSendFile(使用apxs -cia mod_xsendfile.c
)
在vhosts中我打开它,并将我的文件目录提供给它 现在的问题是,ERR_INVALID_RESPONSE
这是代码:
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=$file_name");
header("X-Sendfile: $file_path_cmp");
我正在使用CWP(CentOS Web Panel
)
之前我只有apache并且工作正常
现在我有:Varnish Cache (Port 80) -> Nginx Reverse Proxy (Port 81) -> Apache (Port 8181)
一切正常除了下载部分。