Thursday, May 10, 2007

Securing Apache when checking out with Subversion

adding the following to your apache.conf will stop people browsing your .svn folders which contain information about things like you subversion server address.

<FilesMatch "^.svn">
Order allow,deny
Deny from all
</FilesMatch>

the same would go for .cvs folders

No comments: