0
votes

My Archlinux server uses Apache 2.0 and subversion to give access over internet to my svn server. However after setting it up I can't even commit locally.

My httpd.conf

ServerRoot "/etc/httpd"
Listen 80

LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule dav_svn_module modules/mod_dav_svn.so

User http
Group http

DocumentRoot "/srv/http"

<Location /svn>
   DAV svn
   SVNPath /home/sendo/svn/repository
</Location>

I used:

svnadmin create /home/sendo/svn/repository/projectx

then:

chown -R http.http /home/svn/repository/projectx

after this I try to import files from the svn server with:

svn import -m "Initial import" http://mydomain.topdomain/svn/projectx/

and I get

svn: E000013: Unable to connect to repository at url http://mydomain.topdomain/svn/projectx/

svn: E000013: Could not open the requested SVM filesystem

Anyone know what I am doing wrong?

1

1 Answers

0
votes
SVNPath /home/sendo/svn/repository 

means:

  • you have one repo,
  • this repo must be created in /home/sendo/svn/repository, not one level below