// 利用nginx直接下载文件,提高效率
public function download_apk_efficient($internal_file_path,$file_name){
// And redirect user to internal location
header("Content-Type: application/vnd.android.package-archive");
header("Content-Disposition: attachment; filename=".$file_name);
header("X-Accel-Redirect: " . $internal_file_path);
}
调用的:
Module::factory("Download")->download_apk_efficient("/promoter_files/". $relative_file_path, $out_name); //promoter_files是在nginx的innernal中配置的路径,例如我下载/server/hosting/mobilechannel/promoter_download2/12/1.file,这里实际调用的是download_apk_efficient("/promoter_files/12/1.file" ,$out_name)
在nginx里配置:
location /promoter_files/ { #/promoter_files/是我取的名字,表示alias字段代表的路径
internal;
alias /server/hosting/mobilechannel/promoter_download2/; #这里是文件的实际路径
}
相关推荐
在Nginx中使用X-Sendfile头提升PHP文件下载性能是解决大文件下载和权限控制问题的有效策略。传统的PHP文件下载方式会将文件内容读入内存,然后通过HTTP响应发送给用户,对于大文件来说,这可能导致内存压力过大、...
在PHP中,加速文件下载的方法之一是利用X-SendFile技术。这个技术允许你通过Web服务器(如Apache或Nginx)直接向客户端发送文件,从而避免了PHP处理大文件时可能带来的性能瓶颈。以下是对这个知识点的详细解释: 1....
可以设置全局HTTP级别的配置,如`sendfile on`启用高效文件传输。 - **server块**:代表一个独立的HTTP服务器,通常对应于一个域名或IP。配置监听端口`listen`、服务器名称`server_name`以及SSL证书等。 - **...
sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; } ``` 4. **Server块**:这是Nginx的核心部分,用于处理特定主机或端口的请求。你可以通过`server_name`来指定...
sendfile on; # 不设置TCP_nopush tcp_nopush off; # 设置缓冲区大小 keepalive_timeout 65; # 配置虚拟主机 server { listen 80; server_name localhost; # 静态文件处理 location / { root html; ...
sendfile on; keepalive_timeout 65; gzip on; server { listen 80; server_name example.com; location / { proxy_pass http://192.168.1.100:3000; proxy_set_header Host $host; proxy_set_header X-...
- 使用`tcp_nodelay`和`sendfile`优化响应速度。 7. **负载均衡**: 如果有多个若依应用实例,可以使用Nginx的负载均衡功能。例如,使用轮询策略: ``` upstream backend { server backend1.example.com; ...
sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x....
下载工具 此加载项将任何文件从媒体池发送到浏览器,作为强制下载。...如果使用nginx ,则必须将以下内容放入配置中: rewrite ^/download[s]?/([^/]*) /index.php?download_utility=download&file=$1 last;
第25章 Nginx与X-Sendfile 第26章 在Nginx的响应体之前或之后添加内容 第27章 Nginx与访问者的地理信息 第28章 Nginx的图像处理 第29章 location中随机显示文件 第30章 后台Nginx服务器记录原始客户端的IP地址 ...
--with-file-aio \ --with-http_ssl_module \ --with-http_v2_module \ --with-http_realip_module \ --with-stream_ssl_preread_module \ --with-http_addition_module \ --with-http_gunzip_module \ --...
`:启用sendfile机制,可以提高发送文件的速度。 **8. gzip压缩** - `gzip on;`:启用gzip压缩功能,减少传输的数据量。 **9. 负载均衡** - `upstream myproject { ... }`:定义了一个名为`myproject`的上游...
利用apache nginx lighttpd X-Sendfile提供文件下载 http://hi.baidu.com/tianhuimin/item/96ee61176bf75917e3f98616
- **含义**: 启用或禁用sendfile模式。 - **示例**: `sendfile on;` - **作用**: 使用内核级的文件传输方式提高文件传输效率。 9. **`autoindex`**: - **含义**: 是否启用自动索引功能。 - **示例**: `...
可以使用 wget 命令下载最新版本的 Nginx 软件包,例如: `wget http://nginx.org/download/nginx-1.13.2.tar.gz` 解压、编译安装 下载完成后,需要解压缩安装包并编译安装 Nginx。 `tar -zxvf nginx-1.13.2.tar...
sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; ...
sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root /usr/local/mapping/nginx-fs; index index.html index.htm; } } include /etc/nginx/conf.d/*.conf...
sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; ...