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