1、Nginx作为http服务时,开启网站目录浏览,在Nginx.conf添加配置:
autoindex on;
2、Nginx作为http服务时,关闭网站目录浏览,在Nginx.conf添加配置,经测试直接删除 autoindex on; 也是可以关闭目录浏览功能的。
autoindex off;
3、如上图,已关闭网站目录浏览功能,防止网站目录遍历,泄露重要配置信息。配置后,记得重启Nginx服务才能生效。
1、Nginx作为http服务时,开启网站目录浏览,在Nginx.conf添加配置:
autoindex on;
2、Nginx作为http服务时,关闭网站目录浏览,在Nginx.conf添加配置,经测试直接删除 autoindex on; 也是可以关闭目录浏览功能的。
autoindex off;
3、如上图,已关闭网站目录浏览功能,防止网站目录遍历,泄露重要配置信息。配置后,记得重启Nginx服务才能生效。