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

Adding svn dbses without apache restart

From: Václav Krpec <vasekk_at_alsoft.cz>
Date: 2004-01-13 14:27:25 CET

Hi,

I'm trying to make apache able to manage SVN repositories
creations/removals without need of httpd.conf modification and
restart.
Allow me one more question to the subject --- is it possible to
manage SVN repositories with the SVNParentPath directive in the
<Location> scope in httpd.conf _without_ authentification
and authentificate user accesses using .htaccess files (maybe
using <Directory ...> AllowOverride ... </Directory> directive
in httpd.conf? I tried to make it work, but it acts quite
strange way and I don't know if I'm doing somenthing wrong
or if it's impossible in principle. My config. looks like this:

httpd.conf:
----------------------------------------------------------------
.
.
.
# SVN repositories mapping
AliasMatch /svn/(.*) C:/hosting/svn/$1

<Directory C:/hosting/svn/>
  AllowOverride AuthConfig
  Order allow,deny
  Allow from all
</Directory>

<Location /svn>
  DAV svn
  SVNParentPath C:/hosting/svn
</Location>
-----------------------------------------------------------

C:/hosting/svn/vencik/.htaccess:
-----------------------------------------------------------
AuthType Basic
AuthName "Personal SVN repository"
AuthUserFile C:/hosting/svn/.htpasswd
Require user vencik
-----------------------------------------------------------

Thanks a lot,

-- 
  vencík <vencik@razdva.cz>
         <vasekk@alsoft.cz>
  http://www.razdva.cz/vencik/
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Jan 13 14:28:14 2004

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

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