1

I have a problem with a debian server. I need put a website to work, but my desktop doesn't have a Static IP, only a dynamic IP. The internet provider creat a lot of dificulties to upgrade my internet to statics IPs, I tried to put in he a DDNS, but I wanted a Static IP to this machine.

So I have an idea and I wanted to know if is possible install in this machine a VPN or something that an dedicated IP, to configure My Website. Have some program or something that do it service?

Put a program or something that give a Static IP in my server.

1 Answers1

1

There might be VPN providers out there that will allow port forwarding but I don't think this is very common.

Another option would be to use ngrok basically it will create a URL pointing back to your local web server on-the-fly. (this is an oversimplification)

website here

It will generate a URL that looks something like this:

ngrok.com/mywebsitehere

LocalTunnel is a very interesting project too that does something similar:

Link here

And a bunch more:

Alternatives here

Another option would be to get yourself a VPS somewhere and use that either as a 'VPN' to route traffic back to your server. Quite easily done with SSH. Or just run your code there. This would make a lot more sense.

proxx
  • 121
  • 6