Allright so I am setting up an SVN server as well as the web server.
Centos 5.3
heres what ive got in the subversions.conf file
I have multiple repos that all need to have their own authentication files.
I would also like to place these authentication files with the repos if at all possible.
Right now I can access both via www.yourdomain.com/svn/repo1 or /repo2
Hope that explains what im trying to do.
Let me know if there is a better way to do this (maybe like virtualhosts with apache?)
Centos 5.3
heres what ive got in the subversions.conf file
<Location /svn>
DAV svn
SVNParentPath /var/www/svn
# 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 /var/www/svn/*/conf/auth
Require valid-user
</LimitExcept>
</Location>
I have multiple repos that all need to have their own authentication files.
I would also like to place these authentication files with the repos if at all possible.
Right now I can access both via www.yourdomain.com/svn/repo1 or /repo2
- Repo1
- user1
- user3
- user4
- Repo2
- user2
- user4
Hope that explains what im trying to do.
Let me know if there is a better way to do this (maybe like virtualhosts with apache?)