kaivalya
kaivalya

Reputation: 3869

Serving VisualSVN Server

I am having hard time connecting to my VisualSVN Server repository from computers outside of my home network.

So far I only tried replacing my computer name with my computer's IP in the repository URL but this does not work;

https://MY-PC/svn/ProjectTrunk

Can you point me the steps I need to ensure I can serve the repository to outside computers?

Upvotes: 2

Views: 606

Answers (2)

roman m
roman m

Reputation: 26561

Do you use VisualSVN Server? If not - DO, it will make your life a lot easier.

some other things:

  1. use the IP address (don't use 192.x.x.x either, use the EXTERNAL IP, so you can get to it from outside), and NOT YOUR COMPUTER NAME for repo location
  2. make sure the port is open on your router and firewall
  3. make sure you specify the port number when you connect to your repo

To respond to your comment:

Right-click on your server (in the VisualSVN Server Manager), go to Properties and then click on Network tab - you'll see the port there. When you connect to your repo do this:

https://111.111.111.111:8443/svn/PeojectTrunk

(8443 is the port number, 111.111.111.111 is your IP)

Upvotes: 4

M4N
M4N

Reputation: 96596

You will probably need to setup some dynamic DNS solution such as DynDNS, which allows you to access your computer using a fixed name (even if its IP address changes).

Upvotes: 3

Related Questions