LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   Help regarding SVN WebDAV? (https://www.linuxquestions.org/questions/linux-server-73/help-regarding-svn-webdav-726996/)

your_shadow03 05-19-2009 05:44 AM

Help regarding SVN WebDAV?
 
I have setup SVN Server working with WebDAV but in different way.
Whenever the developer uses Eclipse they always need to add the URL http://<ipaddress>/var/www/html/svn to access.
Why Because I have configured the entry under httpd.conf instead of subversion.conf as:
Code:

<Location /svn>
 DAV svn
 SVNPath /var/www/html/svn
 AuthType Basic
 AuthName "Subversion Repository"
 AuthUserFile /etc/svn-auth-file
 <LimitExcept GET PROPFIND OPTIONS REPORT>
    Require valid-user
  </LimitExcept>
</Location>

Now While using the same, they are using /var/www/html/svn/conf/passwd authz and svnserv.conf which I think is for svn:// protocol.
Anyone who can help em with WEbDAV Correct format and installation steps?


All times are GMT -5. The time now is 03:52 PM.