Is there are way to run a local svn server on a Mac (OS X 10.6.x) such that no ports are open and accessible from outside that Mac?
If so, exactly where do any configuration scripts of any kind need to go?
feedback
|
This question came from our site for professional and enthusiast programmers.
|
You can use subversion repositories with the file protocol tool, something like Another alternative could be to setup an Apache with mod_dav_svn and let it listen only to localhost (127.0.0.1). | |||
|
feedback
|
|
I think that by default when you install SVN it is only accessible from the local box as it does not have a built in networking infrastructure. You usually have to tie it into an apache config or tunnel to the box with SSH. So you should be able to install it without a worry of networking. If your install automagically installs the apache piece, you should be able to disable it in your apache conf. | |||
feedback
|