Reputation: 5982
I would like to install a svn in a machine of a Wireless LAN (in my home: I haven´t bought any public IP), and access to it from internet. I would like to use Apache 2.2 + Subversion + SSL. In my wireless LAN, I have set a static IP for the machine with the SVN, to make it easier. My question is: when I install the Apache server, do I need a public network domain to serve my SVN, or is enough with my external IP (assigned to the router)? If I set it to the router, how should I redirect the traffic to my SVN server (that is in a machine with a private IP)?
Thanks in advance.
Upvotes: 0
Views: 1340
Reputation: 97325
If your router have embedded http-server on 80 port, you can only redirect incoming port for https.
For external world your repo will be https://hostname-of-router/repo/path/, but served by internal host
Upvotes: 1