一切福田,不離方寸,從心而覓,感無不通。

Nginx给某个目录单独开启鉴权

location /work/ {
auth_basic "请输入用户和密码";
auth_basic_user_file /etc/nginx/conf.d/password;

sendfile on; # 开启高效文件传输模式(零拷贝)
autoindex on; # 开启目录文件列表
autoindex_exact_size on; # 显示出文件的确切大小,单位是bytes
autoindex_localtime on; # 显示的文件时间为文件的服务器时间
charset utf-8,gbk; # 避免中文乱码

}

龙生   21 Aug 2026
View Details