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

Apache konfig für SVN-Server

From: Thomas Schweikle <tps_at_vr-web.de>
Date: 2004-08-16 01:59:08 CEST

Hi!

Not being sure, this is the right group, but asking anyway...

I've configured Apache for SVN:
<IfModule dav_module.c>
   LoadModule dav_svn_module modules/mod_dav_svn.so
   LoadModule authz_svn_module modules/mod_authz_svn.so

   <Location /svn>
     DAV svn
     SVNParentPath "C:/www/home/svn"
     SVNIndexXSLT "/svnindex.xsl"

     # Access control
     AuthzSVNAccessFile "C:/www/etc/svn/users.acl"

     # try anonymous access first, resort to real
        # authentication if necessary.
        Satisfy Any
        Require valid-user

        # how to authenticate a user
        AuthType Basic
        AuthName "Subversion repository"
        AuthUserFile "C:/www/etc/svn/users.pas"
   </Location>
</IfModule>

The WebDAV module is loaded before. But this configuration doesn't
seem to load.

Commenting out "<IfModule dav_module.c>" and restarting Apache,
makes it work. Thus I assume something wrong with "<IfModule
dav_module.c>".

Could one of the cracks tell me what I've done wrong, and how to
correct it?

-- 
Thomas
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Aug 16 02:02:13 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.