计算机网络/计算机科学与应用/系统/运维/开发

Nginx 自动列目录配置

在虚拟机主机location / {...}配置自动列目录

server {
    listen 80;
    server_name bbs.myweb.name;
    
    location / {
        # 列出目录
        autoindex on;
        autoindex_exact_size off;
        autoindex_localtime on; 
        
        
        root html/bbs;
        index  index.shtml;
    }
}



image.png

image.png

autoindex_exact_size off

默认为on,显示出文件的确切大小,单位是bytes

改为off后,显示出文件的大概大小,单位是kB或者MB或者GB


autoindex_localtime on

默认为off,显示的文件时间为GMT时间

改为on后,显示的文件时间为文件的服务器时间


照顾好自己,如果尚有余力,记得保护美好的东西,不畏不惧赤诚善良。

评论

^