Ich versuche also, einen Subversion-Server mit mod_dav mit Apache2 einzurichten, aber wenn ich versuche, eine Verbindung herzustellen, bekomme ich einen 403 FORBIDDEN-Fehler. Hier ist meine virtuelle Standardhostdatei
NameVirtualHost \*:443
NameVirtualHost \*:80
<VirtualHost \*:80>
ServerAdmin webmaster@localhost
ServerName hcs-dev
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
<Location /repos/>
DAV On
DAV svn
AuthzSVNAccessFile /svn\_authz
Satisfy Any
Require valid-user
SVNParentPath /repos/
AuthType Digest
AuthName "stevesvn"
AuthUserFile /dig-pw
</Location>
</VirtualHost>
<VirtualHost \*:443>
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/apache.pem
ErrorLog /var/log/apache2/error.log
<Location /repos/>
DAV On
DAV svn
AuthType Basic
AuthName "stevesvn"
AuthUserFile /svn-pw.pw
AuthzSVNAccessFile /svn\_authz
Require valid-user
SVNParentPath /repos/
</Location>
</VirtualHost>
Haben Sie eine Idee, was die Ursache dafür sein könnte?