SVN Repo gives 404 not Found

前端 未结 2 2000
闹比i
闹比i 2021-01-25 05:11

I have installed svn, version 1.6.17 (r1128011) on to Ubuntu 12-04

I made my repo here:

$ sudo mkdir /home/2nd-disk/svn

Set up my /etc/

2条回答
  •  情书的邮戳
    2021-01-25 05:47

    add the reference to your vhost instead of dav_svn.conf:

     
       DAV svn
       SVNPath /var/local/svn
       AuthType Basic
       AuthName "Subversion repository"
       AuthUserFile /etc/apache2/dav_svn.passwd
       
         Require valid-user
       
     
    

    good tutorial is here: http://wiki.ubuntuusers.de/Subversion

    don't forget to restart apache to apply changes:

     sudo /etc/init.d/apache2 restart
    

提交回复
热议问题