• 4 Posts
  • 95 Comments
Joined 2 years ago
cake
Cake day: June 24th, 2023

help-circle






  • Yea the catch was we were asking for TLS for a long time, and this was pre- Let’s Encrypt, so those patching on their own didn’t have a free (minus work) way to handle it. It took a releasable POC to get action.

    All out devices just have a permanent Wireguard client since it uses basically no battery, and then a allow rules for households. If you don’t want to run the client, and don’t want to take the time to learn, you don’t get access. But I totally get how that’s not for everyone.












  • Cloudflare is a good choice. I used DNSExit for a while, and also NS1, but settled on Cloudflare. You don’t have to use their proxying, just DNS.

    Here’s a Docker Compose for you that will set myhost.mydomain.com to point to your public IP of wherever it is run:

    dyndns-cloudflare:
        image: oznu/cloudflare-ddns
        container_name: dyndns-cloudflare
        environment:
          - API_KEY=<key>
          - ZONE=mydomain.com
          - SUBDOMAIN=myhost
          - PROXIED=false
        restart: unless-stopped