80后技术男
分类: 系统运维
2007-02-27 10:32:25
Subversion refuses to add any new files to a repository and shows propfind 302 found error if ErrorDocument 404 handler is enabled. +
+ +The solution is to disable special 404 error handling for Subversion directories with 'ErrorDocument 404 default':
+ +++ + + +
+ DAV svn
+ SVNParentPath /var/www/svn
+ SVNIndexXSLT /svnindex.xsl
+
+ # Limit access to list of valid users.
+ # Require SSL connection for password protection.
+ # SSLRequireSSL
+
+ AuthType Basic
+ AuthName "Multiplex Systems Subversion Repository"
+ AuthUserFile /var/www/auth-file
+ Require valid-user
+ ErrorDocument 404 default
+
+