Nginx CONTENT阶段 autoindexindex模块
Posted Jee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx CONTENT阶段 autoindexindex模块相关的知识,希望对你有一定的参考价值。
L 66
autoindex 指令
syntax : on | off;
default : off;
context : http,server,location;
autoindex_exact_size 指令 针对xml格式 向用户显示相对路径还是绝对路径
syntax : on | off;
default : on;
context : http,server,location;
autoindex_format 指令
syntax : html | xml | json | jsonp;
default : html;
context : http,server,location;
autoindex_localtime 指令 时间是否用本地时间格式
syntax : on | off;
default : off;
context : http,server,location
location / {
index a.html; #这里要注意 index 指令是没办法去除的 那么我们设置一个没有该文件的路径 这样的话autoindex 才会起到效果
autoindex on;
autoindex_format json;
autoindex_localtime on;
}
以上是关于Nginx CONTENT阶段 autoindexindex模块的主要内容,如果未能解决你的问题,请参考以下文章
CentOS 7使用源码编译安装Nginx,以及配置使用autoindex模块
重识Nginx - 08 使用ngx_http_autoindex_module实现目录浏览功能