pcre 正则表达式在线测试和学习站点。
https://regex101.com/
1 开启autoindex功能,当需要提供ftp http协议的下载文件功能的时候比较有作用
Module ngx_http_autoindex_module
参考:http://nginx.org/en/docs/http/ngx_http_autoindex_module.html
1
2
3
4
5
|
location / {
autoindex on;
autoindex_localtime on;
autoindex_exact_size off;
}
|
2 开启tengine开源的功能模块 concat。
参考:https://www.nginx.com/resources/wiki/modules/concat/
1
2
3
4
5
6
|
location / {
concat on;
concat_max_files 60;
concat_ignore_file_error off;
concat_types text/css application/x-javascript;
}
|
cuizhiliang