我设置了一个Nginx网络服务器并使用svn来管理项目文件夹. Nessus发现了这个弱点:
Configure permissions for the affected web server to deny access to the ‘.svn’ directory.
如何阻止访问.svn目录?似乎svn export是在webserver上签出的更好的方式,但是我更容易使用svn.
location ~ /.svn/ { deny all; }
就这样!