Dear All,

I have just upgraded from Apache HTTPD 2.2 --> 2.4. My svn repository seems to work fine over https but I get these repeated warnings:

[:warn] [pid 15721] mod_dav_svn: nested Location '/repos/thereponame' hinders access to '' in SVNPath Location '/repos/thereponame'

My httpd.conf file contains this:

<IfModule mod_dav_svn.c>

##
## project related HTML files
##
<IfModule mod_alias.c>
Alias /repos    /srv/svn/html
</IfModule>
<Directory /srv/svn/html>
        Options         +Indexes +Multiviews -FollowSymLinks
        IndexOptions    FancyIndexing \
                        ScanHTMLTitles \
                        NameWidth=* \
                        DescriptionWidth=* \
                        SuppressLastModified \
                        SuppressSize

        order allow,deny
        allow from all
</Directory>

<Location /repos/thereponame>
   DAV svn
   SVNPath /srv/svn/repos/thereponame
   SVNIndexXSLT "/repos-web/view/repos-thereponame.xsl"

   # Include per-directory access control policy
   AuthzSVNAccessFile /srv/svn/user_access/thereponame_authz

   # Limit write permission to list of valid users.
#   <LimitExcept GET PROPFIND OPTIONS REPORT>
      # Require SSL connection for password protection.
      SSLRequireSSL

      AuthType Basic
      AuthName "Authorization Realm"
      AuthUserFile /srv/svn/user_access/thereponame_passwd
      Require valid-user
#   </LimitExcept>
</Location>


</IfModule>

What have I done wrong?

Thanks,

Chris.

Reply via email to