Project

General

Profile

svn authentication issue

Added by Bhavin Mehta almost 11 years ago

Hi,

I am using below url for setup.

http://www.redmine.org/projects/redmine/wiki/Repositories_access_control_with_apache_mod_dav_svn_and_mod_perl

I have deployed redmine on my ubuntu server 12.04 and it's working fine, but now i want to authentication with svn server through redmine.

My svn server and redmine site both are deployed on same server.

below is my svn authentication file content.

PerlLoadModule Apache::Redmine
<VirtualHost 192.168.1.16:80>
ServerName svn.example.com
<Location />
DAV svn
SVNParentPath /var/www/svn
require valid-user
AuthType Basic
AuthName "Redmine Project Tracking"
PerlAccessHandler Apache::Authn::Redmine::access_handler
PerlAuthenHandler Apache::Authn::Redmine::authen_handler
RedmineDSN "DBI:mysql:dbname=redmine;host=localhost"
RedmineDbUser "redmine"
RedmineDbPass "redminetask"

</Location>
</VirtualHost>

I am getting below error, how to resolve this issue.

svn: Server sent unexpected return value (500 Internal Server Error) in response to OPTIONS request for 'http://svn.example.com/test'