server {
listen 80;
server_name autoindex.aaa.com;
location / {
root /usr/share/nginx/html/;
autoindex on;
index a.html; #指明index文件,默认为index.html,如果此文件不存在,访问域名时会显示目录结构
autoindex_exact_size off;
autoindex_format json; #指明返回的为json格式,也可以是html格式
autoindex_localtime on;
}
}
网友评论