目 录CONTENT

文章目录

Nginx 以文件的形式访问

ABin
2024-09-13 / 0 评论 / 0 点赞 / 47 阅读 / 0 字

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;

  ...
}

0

评论区