derzeit richte ich gerade einen svn dienst auf einen server ein... funkioniert auch ganz gut, nur eines stimmt nicht. wenn ich versuche auf ein repository zuzugreifen, das nicht existiert, bekomme ich statt der erwarteten 404 oder access denied einen xml-fehler:
Code: Alles auswählen
<D:error>
<C:error/>
<m:human-readable errcode="2">Could not open the requested SVN filesystem</m:human-readable>
</D:error>
Code: Alles auswählen
...
DocumentRoot /srv/svn
#ist nötig, weil das Root Verzeichnis "/" Global geblockt wird
<Directory /srv/svn>
AllowOverride None
Options None
Order Allow,Deny
Allow from all
</Directory>
<Location />
DAV svn
SVNParentpath /srv/svn
AuthType Basic
AuthName "SVN"
AuthUserFile /etc/svn/.svn.policy
AuthSVNAccessFile /etc/svn/.svn.policy
Require valid-user
SSLRequireSSL
</Location>
...
(20014)Internal error: Can't open file '/srv/svn/noexisting/format': No such file or directory
Could not fetch resource information, [500, #0]
Could not open the requested SVN filesystem [500, #2]
Could not open the requested SVN filesystem [500, #2]
Weiß jemand warum dieses unerwartete Verhalten auftritt?