原创

nginx配置目录浏览

nginx配置目录浏览

server {
   listen       8080;
   index index.html index.htm;
   server_name  192.168.1.10 localhost;

   root /home/files;
   autoindex on;  # 开启目录浏览
   autoindex_localtime on;  # 显示本地时间
   autoindex_format html;  # 显示格式,可选项为html、xml、json、jsonp
   autoindex_exact_size off;  # 文件大小精确显示,还是友好显示
   charset utf-8,gbk;  # 中文命名的文件显示不会乱码
}

参考:https://nginx.org/en/docs/http/ngx_http_autoindex_module.html

正文到此结束