Defect #10365
closedCan't access SVN repository Apache.
0%
Description
Hi guys,
I'm iPhone developer but I've to setup redmine for my company.
I'm working on it from about 3 days and can't fix one problem.
I want authentication via apache2 + redmine + svn + https + postgres on Ubuntu 11.10.
I've created few repositories manually and added files there.
I followed:
http://www.redmine.org/projects/redmine/wiki/Repositories_access_control_with_apache_mod_dav_svn_and_mod_perl
Looks like I'm able to login to svn(when i try to checkout project) with redmine db user (because it's giving me other info when I fill wrong password or user), but I can't access repositories.
I'm getting:
You don't have permission to access /svn/bada-sprint on this server.
Tried about 100 solutions but nothings helps: permissions to www-data for svn folder, etc.
Here is my /etc/apache2/sites-enabled/myown-ssl file:
@<VirtualHost *:443>ServerAdmin webmaster@localhost
- <Limit GET PROPFIND OPTIONS REPORT>
- Require valid-user
- Allow from all
- Satisfy any
- </Limit>
- AuthUserFile /etc/subversion/passwd # write access
- <LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user - </LimitExcept>
- for mysql
#RedmineDSN "DBI:mysql:database=databasename;host=my.db.server" - for postgres
RedmineDSN "DBI:Pg:dbname=redmine_default;host=localhost" - for SQLite3
- RedmineDSN "DBI:SQLite:dbname=database.db"
RedmineDbUser "redmine"
RedmineDbPass "xxxxx"
#SSLRequireSSL
</Location>
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/apache.pem
SSLProtocol all
SSLCipherSuite HIGH:MEDIUM
</VirtualHost>
@
Please help, I really wont to make it working.
Files