I'm trying to configure my subversion server using apache2, mod_dav_svn and a basically digest authenticaton (for now). I've setup the subdomain svn.example.com to serve the repos and created the virtualhost conf like this:
<VirtualHost *:80>
ServerAdmin admin@example.com
ServerName svn.example.com
<Location />
DAV svn
# Automatically map any "/foo" URL to repository /var/svn/repos/foo
SVNParentPath /var/svn/repos
# List repositories if viewed from a web browser
SVNListParentPath on
# Authentication: Digest
AuthName "Private Area"
AuthType Digest
AuthUserFile /etc/svn-auth.htdigest
# Authoriztion: Authenticated users only
Require valid-user
</Location>
</VirtualHost>
This conf file (svn.example.com) resides inside apache2's sites-available
directory, as well inside sites-enabled
.
The last thing, I created the auth user file using htdigest.
At this step I wanted to test the setup. But each time I open svn.example.com in a browser all I get is a blank page. I don't know what is wrong. I checked the apache access/error log files, but there's nothing there that could help.
Any thoughts ?