I’ve been using Hetzner for some time, but now I want to host everything myself at home.

DNS was easy with Hetzner, just point the domain to Hetzner’s nameservers, and from there to my server.

How are people doing this for home servers? When there’s not access to something like Hetzner’s nameservers.

Is there a free/cheap nameserver I can use to point at my home server’s IP?

  • @towerful
    link
    English
    18 months ago

    Cloudflare is popular, as they also provide something called Tunnels.
    Essentially, your domain points to their public IP, and your server connects to their server. This way, you aren’t opening ports on your home network, you aren’t leaking your home IP, and they provide various protections against DDOS and stuff.
    Only issue is it’s for HTTP(s) traffic, and it’s cloudflare that terminates SSL so they could inspect your traffic if they wanted to (indeed this is how their various security systems work).

    Tailscale offer something similar, I believe.
    Some people run their own Reverse Proxy over VPN (RPoVPN), using a VPS as the entry/exit point.

    These have the benefit of letting you essentially run a separate network from your home network, more security options with little initial configuration to do, not having to publish your home IP address.

    The old school way is to use a Dynamic DNS provider, and open/forward the relevant port(s) on your router.
    Most DNS providers have this ability.
    You would then run a service on your server(s) that updates the DNS with your IP address incase of a dynamic IP address. Or you can rent a static IP address from your ISP.
    There are many DNS providers. I use CloudNS, but it’s a bit clunky. Cloudflare provide DNS. I’m sure there are loads of others.

    • @[email protected]
      link
      fedilink
      English
      18 months ago

      You could also get the cheapest VPS, put all your services at home together with the VPS to the same Tailscale network and install a service such as Nginx Proxy Manager to terminate the HTTP traffic and proxy your home services.

      • @towerful
        link
        English
        28 months ago

        Whether it’s using tailscale, wireguard, SSH tunnels, any other VPN, it’s all RPoVPN