• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Multiple SVN repos, Multiple auth files

tdktank59

Gawd
Joined
Jan 23, 2007
Messages
590
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
<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?)
 
Back
Top