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

}
原文地址:https://www.cnblogs.com/jackey2015/p/10737741.html