I want to use svn on my root server so I performed following steps:
- install subversion using yast
- add group svn
- add a user with group svn
- create svn repo using svnadmin create
- chgrp on repo folder
- Checkout with subclipse
My repo is now located in /root/opt/svn/myproject
I want to access via http. So this is my subversion.conf
<Location /opt/svn> DAV svn SVNParentPath /opt/svn SVNListParentPath On # Limit write permission to list of valid users. # Require SSL connection for password protection. # SSLRequireSSL AuthType Basic # Message to give to the committer AuthName "Write access requires a password" # File listing users with write (commit) access AuthUserFile /srv/svn/user_access/svn_passwdfile Require valid-user </Location>
I followed this tutorial: http://www.korecky.org/?p=168&langswitch_lang=en
How can I access my repo? What is the correct url?