Nginx CONTENT阶段 concat模块

L67

concat_delimiter : 根据js 指定 分隔符 比如 “|” 那么每个文件分隔符为 “|”

concat_types : 指定要合并文件的类型

concat_unique : 

server {
    server_name concat.taohui.tech;

    error_log logs/myerror.log debug;
    concat on;
    root html;
    
        location /concat {
        concat_max_files 20;
        concat_types text/plain;
        concat_unique on;
        concat_delimiter ':::';
        concat_ignore_file_error on;
        }

}

 

posted on 2019-04-19 18:22  _Jee  阅读(234)  评论(0编辑  收藏  举报

导航