You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Chris Evans <Ch...@gresearch.co.uk> on 2011/05/03 15:18:27 UTC

deny/allow access to projects based on IP address?

Hi,

I'm looking to have some way of controlling access to top level projects in an HTTP served repository by IP address. The LocationMatch directive seems to do this as below, but I was wondering if there was a better way anybody has found? I'm guessing there will be some performance hit with multiple directives and especially during a bit checkout.

<LocationMatch "^/svn/repo/project/*">
Order Deny,Allow
Deny from all
Allow from 1.1.1.1
</LocationMatch>

For reference I'm using VisualSVN Sever.

Thanks
Chris

*bypass*