I'd like to switch off authenication for Visual SVN to try and speed things up a bit.
I've added the directive "SVNPathAuthz off" to the httpd.conf file which initially works great. Here is the altered location section of the httpd.conf file: <Location /svn/> DAV svn SVNListParentPath on SVNParentPath "//SERVER_NAME/svn" SVNIndexXSLT "/svnindex.xsl" # AuthName "Subversion Repositories" # AuthType Basic # AuthBasicProvider visualsvn # AuthzVisualSVNAccessFile "//SERVER_NAME/svn/authz-windows" # AuthnVisualSVNUPN Off # require valid-user SVNPathAuthz off </Location> which works great, until Visual SVN rebuilds the file and I lose my change. To be fair, the comment in the file does point to this happening :) # DO NOT EDIT THIS FILE IT WILL BE REGENERATED AUTOMATICALLY BY VISUALSVN SERVER So my question is, how do I ensure this change gets persisted? Thanks in advance, Steve

