> 1. <VirtualHost *:8012> > 2. > 3. ServerAdmin m...@me.com > 4. ServerName my.server.net > 5. > 6. ErrorLog /var/log/apache2/subversion.my.server.net-error_log > 7. CustomLog /var/log/apache2/subversion.my.server.net-access_log > combined > 8. > 9. DocumentRoot /var/www > 10. > 11. LogLevel debug > 12. > 13. <Location /svn/>
What happens if you remove that trailing whack? BOb > 14. DAV svn > 15. > 16. SVNParentPath /home/files/svn_root > 17. SVNListParentPath on > 18. > 19. # Enable WebDAV automatic versioning > 20. SVNAutoversioning On > 21. > 22. # Repository Display Name > 23. SVNReposName "Subversion Repository" > 24. </Location> > 25. > 26. <Directory "/home/files/svn_root"> > 27. Order allow,deny > 28. Allow from all > 29. </Directory> > 30. > 31. <Directory "/var/www"> > 32. Order allow,deny > 33. Allow from all > 34. </Directory> > 35. > 36. </VirtualHost>