nginx配置web访问以及查看目录文件

server {
    listen       8111;
    server_name  localhost;

    location / {
        root   /root/jarServer;
        try_files $uri $uri/ /index.html;
        index  index.html;
            autoindex on;  # 开启目录文件列表
            autoindex_exact_size on;  # 显示出文件的确切大小,单位是bytes
            autoindex_localtime on;  # 显示的文件时间为文件的服务器时间
            charset utf-8,gbk;  # 避免中文乱码
    }
}

nginx.conf文件设置。
像ftp那样显示文件列表,nginx默认是不支持的,需要通过在location、server或http配置段添加额外参数:

autoindex on; # 开启目录文件列表
autoindex_exact_size on; # 显示出文件的确切大小,单位是bytes
autoindex_localtime on; # 显示的文件时间为文件的服务器时间
charset utf-8,gbk; # 避免中文乱码

上一篇:谈谈高并发系统的限流


下一篇:mybatis 批量插入