Hello, I've set up using many tutorials from the web a repository and svnserve on my mac.
But I cannot access it from the internet.
If I call the following command everything works alright:
svn co svn://192.168.1.10 /working_copy/myproject --username me
And If I call the following:
svn co svn://my_external_ip /working_copy/myproject --username me
I get a error: Can't connect to host 'my_external_ip': Connection refused
Of course instead of my_external_ip I type in my external ip address that I got from whatismyip.com
I've set up port forwarding on my router for port 3690 to my local ip - 192.168.1.10
svnserve is running. I launched it with:
svnserve -d
I tried to check if port 3690 is open using http://www.canyouseeme.org/ and it says that the port is open.
What may be the problem? I'm trying to figure it out for the whole day and can't find the cause.
Thank you in advance.