Project

General

Profile

Redmine + SVN

Added by El Achèche ANIS almost 12 years ago

Hello :)

I'm a new user of redmine, I successfully integrate the creation of new repos via redmine using the SCM Creator plugin, now my developers can use there redmine accounts to connect o svn..

But I need to let anonymous browse the repos too.. So I can integrate my repos into Hudson(I already tried to use a developer account that I use with a repo to test Hudson + SVN but that doesn't work)..

By the way, my redmine users are my LDAP accounts..

I appreciate any suggestions :)


Replies (2)

RE: Redmine + SVN - Added by Carlos Lastres almost 12 years ago

Allow access without auth by adding Allow from svn.server.ip and verifying Satisfy any is set under the read access section in your apache conf file for svn (/etc/APACHE_DIR/conf.d/svn.conf)

The section should look something like this:

#read access
     <Limit GET PROPFIND OPTIONS REPORT>
        Require valid-user
        Allow from svn.server.ip   #server exception rule
        Satisfy any                #either auth or access control will have access
     </Limit>

# write access
     <LimitExcept GET PROPFIND OPTIONS REPORT>
       Require valid-user
     </LimitExcept>

Save file and have apache reread all conf files

/etc/init.d/httpd reload

You can test read access from the hudson server by

svn ls http://svn.server.url/svn/project

Hope this helps

    (1-2/2)