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; # 避免中文乱码

    原文作者:weixin_34004750
    原文地址: https://blog.csdn.net/weixin_34004750/article/details/89580558
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞