Nginx配置并显示磁盘目录文件列表

 

1.修改nginx.conf配置文件

# HTTPS server
    #
    server {
         listen       80;
        server_name  xxx.xxx.com;#域名或者ip
    
    location  /{
             alias /usr/local/download/;
             #Nginx日志目录
             autoindex on;
             #打开目录浏览功能
             autoindex_exact_size off;
             #默认为on,显示出文件的确切大小,单位是bytes
             #显示出文件的大概大小,单位是kB或者MB或者GB
             autoindex_localtime on;
             #默认为off,显示的文件时间为GMT时间。
             #改为on后,显示的文件时间为文件的服务器时间
             add_header Cache-Control no-store;
            }
    }
2.访问浏览器

Nginx配置并显示磁盘目录文件列表_第1张图片

你可能感兴趣的:(Linux)