Forum archive
Redmine appliance and http access to svn repos
Hi to all!
i'm trying to use latest Redmine appliance from here /redmine and i dont understand how config or settingup it to use svn repo over http.
When i try to acces over http:// i have problem with Access forbidden. But over svn:// no problem.
Please help me configure them to get access to repos over http
My redmine_webaccess.conf:
PerlModule Apache::DBI
PerlOptions +GlobalRequest
PerlLoadModule Apache::Redmine
<Location /svn>
DAV svn
SVNAllowBulkUpdates Prefer
SVNParentPath "/svn/repos/svn"
Order deny,allow
Deny from all
Satisfy any
LimitXMLRequestBody 0
SVNPathAuthz off
PerlAccessHandler Apache::Authn::Redmine::access_handler
PerlAuthenHandler Apache::Authn::Redmine::authen_handler
AuthType Basic
AuthName "Redmine SVN Repository"
AuthUserFile /dev/null
# read access
<Limit GET PROPFIND OPTIONS REPORT>
Require valid-user
Allow from all
Satisfy any
</Limit>
# write access
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
</LimitExcept>
RedmineDSN "DBI:mysql:database=redmine_production;host=localhost"
RedmineDbUser "redmine"
RedmineDbPass "secret"
</Location>
By the way if it matters I changed the location of repos to /svn/repos/svn wich mounted as iscsi
thanks in advance!
i think problem in RewriteEngine
need to configure rewrite rules for svn
but i dont know how to properly do this