Jun 072010
How to deny access for Subversion (svn) related files in Apache?
Answer:
To deny access for Subversion (svn) related files under Apache, add the following lines to the Apache configuration (httpd.conf)
<DirectoryMatch .*\.svn/.*>
Deny From All
</DirectoryMatch>
And restart Apache to take effect.
# apachectl -k graceful