I am relatively new to revision control and I need some help deciding if this is the proper set up.
I am using "Subversion for Windows" from Sourceforge, TortoiseSVN and DynDNS. We have a "server machine" we're using to install all of this on. We want to be able to share the repository over the network and access it from home. We do not have a web server available to use.
The folder structure is like this:
C:\SVN\project-name\trunk
C:\SVN\project-name\branches and so on...
On the test run on my local machine I was able to install everything and successfully import and download copies of our repository using an address like such:
svn://my-dyndns-addr/SVN-folder/project-name/trunk
For the sake of expediting the process I didn't run the svnserve.exe file as a service and simply used this command:
svnserve.exe --daemon
This worked fine. The DynDNS connection seems to work as well and I can ping it from any of our work machines. The configuration files in the "conf" directory have all been modified appropriately with a new username and password.
Then it was time to repeat this process on the server and I installed and configured everything similarly. The only change I made was installing svnserve.exe as a service following this guide. The service installed fine and I can connect to the repository, but the authentication is failing. Again I am still able to ping the DynDNS address and the SVN address.
So my questions are: is there some part of the authentication process I'm missing? How come with such similar setups I can connect to the SVN server on my machine but not on the server? And is this a good setup? Should I be concerned about security beyond having good usernames and passwords? Are there any little things I might be overlooking? This is all new to me so I've mostly been "tinkering" around.
Thanks.
A couple last notes: I am remoting into the server and I've restarted the service and computer a couple times now.