This is my first time creating a SVN repository. I am running into problems on the client machine when I try to check out my repo files. I have no issues when I try to check things out on the machine where I created the repos; i.e. when I do: svn co file:///repo_path/project_name/trunk
But, when I try to access the same from a remote machine using network protocol (http://...), I get the same issue as described in An SVN error (200 OK) when checking out from my online repository.
Unfortunately, that discussion did not help me since I’m sure I have the right SVN HTTP URL. I checked the conf/svnserve.conf and saw the following:
[general]
anon-access = read
auth-access = write
password-db = passwd
realm = My First Repository
Please let me know what I’m missing.
My configuration consists of three files (located in the
conffolder):authzpasswdsvnserve.confThey serve the following purpose:
svnserve.conf:configures the overall access to the repo and provides the following content:
passwd:provides passwords for certain users:
authz:authorization file for svnserve:
This should do it.