Non-LDAP users cannot access subversion
Added by Tine Šukljan over 13 years ago
Hi.
I have a strange error, that I cannot solve. We were using redmine for quite some time (approx. 2 years). Most of the users come from LDAP, but there are some locally registered on redmine. A few weeks ago I updated redmine to: Redmine 1.2.0.devel.6069
The problem that arised is that every non-LDAP users cannot access svn (the users from LDAP are using svn without issues).
Some info about the system:
Ubuntu 11.04
Mysql 5.1
Apache 2.2.14
the virtual host in apache configured to handle svn is the following:
PerlLoadModule Apache::Redmine
<VirtualHost *:443>
ServerAlias svn.xxx
ServerName svn.xxx
CustomLog /var/log/apache2/svn-ssl-access.log combined
ErrorLog /var/log/apache2/svn-ssl-error.log
LogLevel warn
<Location />
DAV svn
SVNParentPath "/var/svn"
SVNListParentPath on
AuthType Basic
AuthName "redmine SVN"
Require valid-user
PerlAccessHandler Apache::Authn::Redmine::access_handler
PerlAuthenHandler Apache::Authn::Redmine::authen_handler
RedmineDSN DBI:mysql:database=redmine;host=localhost
RedmineDbUser un
RedmineDbPass pw
</Location>
SSLEngine on
SSLCertificateFile /etc/apache2/certs/server.crt
SSLCertificateKeyFile /etc/apache2/certs/server.key
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</VirtualHost>
Can anyone at least direct me to where the error could be?
Thank you very much for the help
Tine