[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: working copy is web-accessible, .svn/auth/* retrievable

From: Thom May <thom_at_planetarytramp.net>
Date: 2003-01-07 17:21:34 CET

* Alexis Huxley (ahuxley@gmx.net) wrote :
> Hi
>
> A Subversion and/or Apache problem:
>
> I've got my homepage stored in Subversion; that is I run:
>
> svn co http://blah.blah/svn/homepage ~/public_html
>
> For various reasons I don't want to 'make install' my homepage to
> ~/public_html from somewhere else, and of course I don't want to
> remove the .svn's either.
>
AllowOverride All in httpd.conf; then:
 
<DirectoryMatch ~ "^\.svn">
        Order deny,allow
        Deny from all
</DirectoryMatch>

should do pretty much what you need in a .htaccess.
personally i'd do that site wide though.
-Thom

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Jan 7 17:22:39 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.