The same way you can hide your location with the proper use of a VPN, I would like to host a website, but have proxy the server with a “VPN” to the outside world.

The goal is to make it impossible to find where the server is located.

VPN is the wrong tool. Are there services like VPNs that could do this?

  • dudeami0@lemmy.dudeami.win
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    1 year ago

    There is a similar discussion going on at !selfhosted@lemmy.world - link to post. I personally use WireGuard to achieve this, which when configured correctly essentially puts your servers inbound/outbound traffic behind another server. Note that this isn’t as “private” as a normal VPN, as you are a single user behind a single IP which can be used to track activity from that IP. It does protect your home network from most outside snooping though, again if configured correctly.

    • Sloped8184OP
      link
      fedilink
      English
      arrow-up
      3
      ·
      1 year ago

      So if I’m understanding that post correctly, I’m looking for something different. I understand how to use VPN to host private internal services. I’d be looking to host a public service, but hide where my servers are located.

      I want the world to access my service, but I don’t want them to know where my servers are.

      • dudeami0@lemmy.dudeami.win
        link
        fedilink
        English
        arrow-up
        3
        ·
        1 year ago

        My instance https://lemmy.dudeami.win/ is hosted in this manner, but the public IP (45.76.20.112, hosted on a $5 VPS) tunnels public requests to my servers located on my home network. So, the servers running at my house do not expose their public IPs, but the service can still federate and be accessed by the public internet. I think this is what you are going for? It’s essentially what Cloudflare does, but self-hosted (via a VPS). Sorry if this is not what you are looking for!