nginx禁止访问某个后缀名的文件
猛然发现通过http://ip:端口号/路径/config.ini竟然能下载项目代码的配置文件,检查nginx配置,原来是没有加限制,立即加上,并记录如下:
location ~* \.(ini|docx|txt|doc)$ {
deny all;
}
当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »
猛然发现通过http://ip:端口号/路径/config.ini竟然能下载项目代码的配置文件,检查nginx配置,原来是没有加限制,立即加上,并记录如下:
location ~* \.(ini|docx|txt|doc)$ {
deny all;
}
当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »