`

nginx x-sendfile下载

 
阅读更多

    // 利用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文件下载的性能(针对大文件下载)

    在Nginx中使用X-Sendfile头提升PHP文件下载性能是解决大文件下载和权限控制问题的有效策略。传统的PHP文件下载方式会将文件内容读入内存,然后通过HTTP响应发送给用户,对于大文件来说,这可能导致内存压力过大、...

    在PHP中使用X-SendFile头让文件下载更快

    在PHP中,加速文件下载的方法之一是利用X-SendFile技术。这个技术允许你通过Web服务器(如Apache或Nginx)直接向客户端发送文件,从而避免了PHP处理大文件时可能带来的性能瓶颈。以下是对这个知识点的详细解释: 1....

    nginx-1.12.0安装包和配置文件

    可以设置全局HTTP级别的配置,如`sendfile on`启用高效文件传输。 - **server块**:代表一个独立的HTTP服务器,通常对应于一个域名或IP。配置监听端口`listen`、服务器名称`server_name`以及SSL证书等。 - **...

    Nginx-windows 下安装配置 Nginx 详解 - CSDN博客1

    sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; } ``` 4. **Server块**:这是Nginx的核心部分,用于处理特定主机或端口的请求。你可以通过`server_name`来指定...

    windows下nginx-0.7.63

    sendfile on; # 不设置TCP_nopush tcp_nopush off; # 设置缓冲区大小 keepalive_timeout 65; # 配置虚拟主机 server { listen 80; server_name localhost; # 静态文件处理 location / { root html; ...

    Nginx代理安装配置手册.docx

    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-...

    nginx-若依-定值配置.zip

    - 使用`tcp_nodelay`和`sendfile`优化响应速度。 7. **负载均衡**: 如果有多个若依应用实例,可以使用Nginx的负载均衡功能。例如,使用轮询策略: ``` upstream backend { server backend1.example.com; ...

    nginx-1.9.0+配置.zip

    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....

    download:通过PHP或X-SendFile从媒体池下载文件的文件

    下载工具 此加载项将任何文件从媒体池发送到浏览器,作为强制下载。...如果使用nginx ,则必须将以下内容放入配置中: rewrite ^/download[s]?/([^/]*) /index.php?download_utility=download&file=$1 last;

    决战Nginx: 系统卷 - 高性能Web服务器详解与运维第三部分(保证能用)

    第25章 Nginx与X-Sendfile 第26章 在Nginx的响应体之前或之后添加内容 第27章 Nginx与访问者的地理信息 第28章 Nginx的图像处理 第29章 location中随机显示文件 第30章 后台Nginx服务器记录原始客户端的IP地址 ...

    Nginx正向代理http和https.md

    --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 \ --...

    nginx和keepalived 安装使用

    `:启用sendfile机制,可以提高发送文件的速度。 **8. gzip压缩** - `gzip on;`:启用gzip压缩功能,减少传输的数据量。 **9. 负载均衡** - `upstream myproject { ... }`:定义了一个名为`myproject`的上游...

    Apache mod_xsendfile-master 最新版下载

    利用apache nginx lighttpd X-Sendfile提供文件下载 http://hi.baidu.com/tianhuimin/item/96ee61176bf75917e3f98616

    nginx配置详细-最全说明

    - **含义**: 启用或禁用sendfile模式。 - **示例**: `sendfile on;` - **作用**: 使用内核级的文件传输方式提高文件传输效率。 9. **`autoindex`**: - **含义**: 是否启用自动索引功能。 - **示例**: `...

    Nginx的安装部署

    可以使用 wget 命令下载最新版本的 Nginx 软件包,例如: `wget http://nginx.org/download/nginx-1.13.2.tar.gz` 解压、编译安装 下载完成后,需要解压缩安装包并编译安装 Nginx。 `tar -zxvf nginx-1.13.2.tar...

    Windows下Nginx的安装与配置

    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; ...

    docker配置nginx静态文件服务.docx

    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...

    Nginx手把手安装教程

    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; ...

Global site tag (gtag.js) - Google Analytics