Don't really know where to ask so I'm asking there, since I know there are some skilled programmers around.
I'm on an impossible quest to setup a SVN server at my workplace.
The server would be just a regular pc with ubuntu linux as OS, that uses apache (httpd) to serve subversion.
I followed
this tutorial using a virtual machine as server, and everything works; so hopefully I should be able to replicate the process on the physical machine.
Now my problem is that the repos should be stored on a NAS drive that is connected (LAN) to the physical server, instead of being stored directly on the machine internal HDD.
So in my naivete I'm thinking I just need to change this
<Location /svn>
#...
SVNParentPath /mylocalfolder/svn
</Location>
to this
<Location /svn>
#...
SVNParentPath \\myNAS\svn
</Location>
But I strongly suspect it won't work and I can't test this condition using the virtual machine.
Anyone know if this is as foolish as I suspect or not?
I tried some google-fu but most people out there seem to want to setup the server directly on the NAS drive, while I want to use a proper machine as a server, just telling it to store the stuff on the network HDD.
Thanks.