nginx.conf
要删掉根目录下的index.html 如果存在会导致以下配置无效
server
{
...
#权限
add_header Cache-Control no-cache;
auth_basic "User Authentication";# 添加这一行
auth_basic_user_file /www/wwwroot/d.abin.prohtpasswd;
#文件访问
charset utf-8;
autoindex on;
autoindex_exact_size off;
...
}
评论区